Hi all,
I am trying to do something by way of contest entry. I want the form to do 2 things on clicking "submit". 1) It needs to send an email to an "Entries" account, and two it needs to add that email to my mailing list. I have 1) working, but can't seem to figure 2). Can some HTML guru tell me what I need to add to get the mailing list part done. I tried several variations to no avail. The code I have (with email address redacted) is:
<h2>Enter Here to Win</h2>
<form method="post" name="form" action="aspsendmail.asp">
<input name="_recipients" value="entri###@####e.com" type="hidden">
<input name="_subject" value="Contest Entry - GRAND" type="hidden">
<input name="_redirect" value="Thank-You-_ep_4-1.html" type="hidden">
Your Full Name: <input name="Name"> <br><br>Your E-Mail Address (required):
<input name="Email"><br><br>Your Phone Number: <input name="Phone"> <br>
<p><input name="email-button" value="Submit" type="submit"></p>
</form>
Thanks for the Help!!!
I am trying to do something by way of contest entry. I want the form to do 2 things on clicking "submit". 1) It needs to send an email to an "Entries" account, and two it needs to add that email to my mailing list. I have 1) working, but can't seem to figure 2). Can some HTML guru tell me what I need to add to get the mailing list part done. I tried several variations to no avail. The code I have (with email address redacted) is:
<h2>Enter Here to Win</h2>
<form method="post" name="form" action="aspsendmail.asp">
<input name="_recipients" value="entri###@####e.com" type="hidden">
<input name="_subject" value="Contest Entry - GRAND" type="hidden">
<input name="_redirect" value="Thank-You-_ep_4-1.html" type="hidden">
Your Full Name: <input name="Name"> <br><br>Your E-Mail Address (required):
<input name="Email"><br><br>Your Phone Number: <input name="Phone"> <br>
<p><input name="email-button" value="Submit" type="submit"></p>
</form>
Thanks for the Help!!!
Comment