Need help changing a form over to Constant Contact. Form collects info and sits in an iframe on my web page. When the form is filled out an email is generated and sent to the customer that filled out the form. I have all of the code - I just want to change it to work with my new Constant Contact accout and not the old Infusionsoft Account.
If someone can help me or point me in the right direction that would be great!
THANKS!
Katie
katierobinson@charter.net
Here is a link to the page that has the form:
http://www.hoodfilters.com/resellerprograms.aspx
This is the code for the form that the iframe references:
Form1.html:
<form action="https://empowermarketing.infusionsoft.com/AddForms/processFormSecure.jsp" method='POST'>
<input type="hidden" name="infusion_xid" value="dd51c5167fa7f7a7e6032fdb9ed59550" id="infusion_xid" />
<input type="hidden" name="infusion_type" value="CustomFormWeb" id="infusion_type" />
<input type="hidden" name="infusion_name" value="Reseller Form" id="infusion_name" />
<table>
<tr><td colspan="99" style="padding:4px;background-color:#000000;color:#FFFFFF">Person Information</td></tr>
<tr><td>First Name *</td><td><table cellpadding="0px" cellspacing="0px" border="0px">
<tr>
<td><input size="15" class="default-input" type="text" name="Contact0FirstName" id="Contact0FirstName" /></td>
</tr>
</table>
</td></tr>
<tr><td>Last Name *</td><td><table cellpadding="0px" cellspacing="0px" border="0px">
<tr>
<td><input size="15" class="default-input" type="text" name="Contact0LastName" id="Contact0LastName" /></td>
</tr>
</table>
</td></tr>
<tr><td>Email Address *</td><td><table cellpadding="0px" cellspacing="0px" border="0px">
<tr>
<td><input size="15" class="default-input" type="text" name="Contact0Email" id="Contact0Email" /></td>
</tr>
</table>
</td></tr>
<tr><td>Phone Number *</td><td><table cellpadding="0px" cellspacing="0px" border="0px">
<tr>
<td><input size="15" class="default-input" type="text" name="Contact0Phone1" id="Contact0Phone1" /></td>
</tr>
</table>
</td></tr>
<tr><td>Zip Code *</td><td><table cellpadding="0px" cellspacing="0px" border="0px">
<tr>
<td><input size="15" class="default-input" type="text" name="Contact0StreetAddress1" id="Contact0StreetAddress1" /></td>
</tr>
</table>
</td></tr>
<tr><td>Company Name *</td><td><table cellpadding="0px" cellspacing="0px" border="0px">
<tr>
<td><input size="15" class="default-input" type="text" name="Contact0StreetAddress2" id="Contact0StreetAddress2" /></td>
</tr>
</table>
</td></tr>
<tr><td>Website</td><td><table cellpadding="0px" cellspacing="0px" border="0px">
<tr>
<td><input size="15" class="default-input" type="text" name="Contact0City" id="Contact0City" /></td>
</tr>
</table>
</td></tr>
<tr><td colspan="2"><input class="button np inf-button" type="submit" name="Submit" value="Submit" id="Submit" /></td></tr>
</table>
</form>
... View more