2

是否可以在电子邮件通讯中添加表格?我试图包含代码,但是当我发送电子邮件时,输入字段没有显示在电子邮件客户端中。任何帮助将不胜感激。

我包含的表单代码是:

<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>
4

2 回答 2

2

通过快速搜索,我发现了这个:

Html 电子邮件中的 Html 表单

显然可以做到,但从我阅读的内容来看,电子邮件客户端的功能各不相同,链接页面上有一个图表,显示了不同的客户端如何处理电子邮件。

于 2012-06-21T14:54:08.770 回答
1

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)

于 2012-06-21T14:51:20.853 回答