Mailchimp电子邮件模板:按钮中的调查问题/调查设计改进

时间:2018-10-07 07:32:08

标签: mailchimp

使用Mailchimp模板,可以使用按钮来构建调查。

例如,我的工作非常完美:

enter image description here

我想使用按钮以这种方式创建调查:

enter image description here

但是当我使用预览或发送电子邮件时,我得到了这个信息:

enter image description here

是否有实现此目标的方法或改进调查设计的方法?

谢谢。

1 个答案:

答案 0 :(得分:0)

问题最可能是由HTML编码引起的,您应将<替换为&lt;,并将>替换为&gt;

  1. < = &lt;

  2. > = &gt;

  

这是一个例子:

<table width="100%" border="0" cellspacing="0" cellpadding="0">
  <tr>
    <td>
      <div>
        <!--[if mso]>
          <v:roundrect xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="urn:schemas-microsoft-com:office:word" href="http://litmus.com" style="height:36px;v-text-anchor:middle;width:150px;" arcsize="5%" strokecolor="#EB7035" fillcolor="#EB7035">
            <w:anchorlock/>
            <center style="color:#ffffff;font-family:Helvetica, Arial,sans-serif;font-size:16px;">I am a button &rarr;</center>
          </v:roundrect>
        <![endif]-->
        <a href="#" style="background-color:#EB7035;border:1px solid #EB7035;border-radius:3px;color:#ffffff;display:inline-block;font-family:sans-serif;font-size:16px;line-height:44px;text-align:center;text-decoration:none;width:150px;-webkit-text-size-adjust:none;mso-hide:all;">I am a button &rarr;</a>
      </div>
    </td>
  </tr>
</table>

其他:您可以使用此网站对模板进行编码:

https://opinionatedgeek.com/Codecs/HtmlEncoder