I want to have a link on all of my pages that goes to a page with a form that automatically adds into the constant contact email list I have designated in the back office. Is this possible?
I want to capture all of the fields for address, city, state, phone, etc that the checkout does - I figure I could make the form something like this (but this does not work) Do you know what the names of the fields should be to make it work like the check out will capture??
<form id="newsletter_form" action="https://#####/newsletter.cgi" method="post" target="_blank">
<input type="hidden" value="#####" name="storeid">
<table id="newsletter_tbl"><tr>
<td id="newsletter_field">
First Name: <input type="text" name="newsletter_firstname" value=" ">
Last Name: <input type="text" name="newsletter_lastname" value=" ">
Address: <input type="text" name="newsletter_address" value=" ">
City: <input type="text" name="newsletter_city" value=" ">
State: <input type="text" name="newsletter_state" value=" ">
Zip: <input type="text" name="newsletter_zip" value=" ">
Email Address: <input type="text" name="newsletter_email" value=" ">
Phone: <input type="text" name="newsletter_phone" value=" ">
</td><td id="newsletter_submit"><input type="image" src="http://####/store/media/en-US/buttons/defaults/SignUp.gif" align="top" border="0" alt="Sign-up">
</td>
</tr></table>
</form>
Thanks for any help you can give.