Mail Chimp - 将表单添加到电子邮件模板

时间:2015-02-06 15:02:51

标签: php forms email iframe mailchimp

我正在尝试使用代码工具向我的Mail Chimp Emailer添加一个表单,然后添加我的表单代码,但是当我预览电子邮件时,表单和复选框被条带化:

<form action="http://www.example.com/Emailer.php">
        <input type="checkbox" id="ancaster" /><label for="ancaster">Ancaster</label>
        <input type="checkbox" id="beamsville" /><label for="beamsville">Beamsville</label>
        <input type="checkbox" id="binbrook" /><label for="binbrook">Binbrook</label>
        <input type="checkbox" id="collingwood" /><label for="collingwood">Collingwood</label>
        <input type="checkbox" id="hamilton" /><label for="hamilton">Hamilton</label>
        <input type="checkbox" id="kitchener" /><label for="kitchener">Kitchener</label>
        <input type="checkbox" id="stoney-creek" /><label for="stoney-creek">Stoney Creek</label><br />
        <input type="submit" id="submit" value="Submit Here" style="background-color:red; border:0; color:#FFF;" />
</form>

我还尝试将我的表单上传到服务器并使用iframe,但这也不起作用,当我转到预览时,它会剥离iframe。有人有任何想法吗?

谢谢,

1 个答案:

答案 0 :(得分:1)

表单无法在电子邮件中使用。 iframe也不会。您应该找出一个设计,提示用户点击您的表单。

HTML电子邮件在可以支持的HTML方面非常有限。基本上认为它是1998年的网络。

相关问题