adding form to html email newsletter

Deadly 提交于 2019-11-28 10:07:53

问题


Is it possible to add a form to an email newsletter? I have tried to include the code but when I send the email input fields don't show up in the email client. Any help will be appreciated.

The form code I included is:

<form action="http://feedburner.google.com/fb/a/mailverify" method="post" onsubmit="window.open('http://feedburner.google.com/fb/a/mailverify?uri=GenzymeRareCommunityBlog', 'popupwindow', 'scrollbars=yes,width=550,height=520');return true" style="border:0;" target="popupwindow">
<p>Enter your email address:</p>
<p><input name="email" style="width:140px" type="text" /></p>
<p><input name="uri" type="hidden" value="GenzymeRareCommunityBlog" /><input name="loc"   type="hidden" value="en_US" /><input type="submit" value="Subscribe" /> </p></form>
<p><a href="http://feeds.feedburner.com/GenzymeRareCommunityBlog" rel="alternate" type="application/rss+xml"><img alt="" src="http://www.feedburner.com/fb/images/pub/feed-icon16x16.png" style="vertical-align:middle;border:0" /></a> <a href="http://feeds.feedburner.com/GenzymeRareCommunityBlog" rel="alternate" type="application/rss+xml">Subscribe in a reader</a></p>
<p style="font-size: smaller"><em>*We will not share your email with any other parties. <a href="privacy-policy">Privacy Policy</a></em></p>

回答1:


With a quick search I found this:

Html Forms in Html Emails

Apparently it can be done but from what I read functionality varies from email client to email client, there is a chart on the linked page that shows how different clients can be expected to handle the emails.




回答2:


I don't believe you can add a traditional form to your email. typically, you'll see the illusion of a form... like an image of a radio button, that links to a page (with an argument in the url of your selected choice) which then has a post / submit form button.

alternatively, you can simply link to a real form (with a nice pretty call-to-action button)



来源:https://stackoverflow.com/questions/11140718/adding-form-to-html-email-newsletter

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!