Showing posts with label HTML forms. Show all posts
Showing posts with label HTML forms. Show all posts

Tuesday, May 22, 2012

HTML Form based mailer Format


Most of the Marketers are inclined to send HTML Form based mailers for lead generation, as this would enable the recipients to enter the information directly into the email without going to a landing page. Following are the tips for a better HTML Form based mailer.


  1. Form tags needs to be defined for the section that has the form details/elements to be captured.
  2. Specify relevant names for the data capture elements.
  3. All the data validations should be done on the server side at the client's end.
  4. Specify the form Method as GET.
  5. Define appropriate action for the form. The action should ideally take them to the page which captures and validates data on the server side at the client's end.
  6. There should be no Javascript code present in the email html.


Once data is validated then appropriate action needs to be taken, the process should be as follows:

  • Data should be captured from the GET parameters.
  • Once the data is captured, validate the data.
  • If everything is fine, then it should take the user to a Thank You page hosted by the client.
  • Else, it should redirect to the same or similar form page which will be hosted by the client, where all the errors should be highlighted and data should be pre-populated if needed


Here is a sample HTML code snippet for a form based mailer.



Name :
Email :





Monday, May 21, 2012

Email Marketing - Using Forms in HTML Emails


We generally discourage the use of forms in email to prevent delivery or usability problems. However, at times you might still need to use a form in an email instead of directing readers to your Website. Consider these factors before you use a form in your next email message.

Those recipients of your email who use Hotmail or those who use Outlook will not be able to use the form because:


  • Hotmail displays the form but strips all values from your
    tag and removes the name values of all form elements, rendering the form useless.
  • Hotmail recipients can complete the form, but nothing will happen when they hit the submit button so they will not know it has not been received .
  • Outlook has limitations when viewing forms in the mail client. Outlook can not see data in a "form tag", when a form is passed via email and viewed in Outlook as outlook strips out form elements.


You can refer to these articles:

http://help.isu.edu/index.php?action=knowledgebase&catid=38&subcatid=39&docid=1058
http://www.sitepoint.com/blogs/2007/01/10/microsoft-breaks-html-email-rendering-in-outlook/

Some email clients do not support forms that use “POST” method, which allows form data to appear within the message body. Instead you will need to replace it with the “GET” method, which will write all form content to the query string of the page to which the form is posted.

For example:

Most email clients that provide a preview pane don’t allow you to tab between form elements. This means that when a recipient completes the first field in your form and clicks the TAB key, the focus is automatically shifted to another part of the software. This hinders usability and can confuse your recipient.