F
freedomseed_church
Guest
I am trying create a text form on my ministry website that allows users to submit their email to me so that they can be added to our newsletter emailing list. What I am having trouble with is understanding the script required to make that work.
This is the HTML code I think I need...
<form name="input" action="html_form_action.asp" method="get">
Email :
<input type="text" name="email" value="email" size="20">
<br>
<input type="submit" value="Submit">
</form>
The part I don't understand is the .asp script that is required. I know that I am not supposed to use the one provided by default (html_form_action.asp)...I am having trouble though finding the script that will work in this case.
I just want the user to be able to type their email in the text field and click submit. After which whatever they typed in the text field would be sent to the email address of my choice. I hope I have made clear enough what my desired effect is...what is the script for the .asp file that would make this happen?
This is the HTML code I think I need...
<form name="input" action="html_form_action.asp" method="get">
Email :
<input type="text" name="email" value="email" size="20">
<br>
<input type="submit" value="Submit">
</form>
The part I don't understand is the .asp script that is required. I know that I am not supposed to use the one provided by default (html_form_action.asp)...I am having trouble though finding the script that will work in this case.
I just want the user to be able to type their email in the text field and click submit. After which whatever they typed in the text field would be sent to the email address of my choice. I hope I have made clear enough what my desired effect is...what is the script for the .asp file that would make this happen?