2011-04-27 115 views
2

我们的网络应用程序发送确认电子邮件,当一个人注册。此消息仅在Gmail中收到垃圾邮件文件夹。我们发送的所有其他电子邮件都由最终用户在收件箱中正确接收。我花了几个小时仔细研究这一点,甚至无法弄清楚它是否是电子邮件的实际HTML代码或其他问题。你能帮忙吗?Gmail正在发送我们的欢迎电子邮件

这里是我们的HTML电子邮件:

<html> 
    <div style="width: 600px; background: #f2f2f2; padding-bottom: 25px; padding-top: 25px;"> 
     <div style="border: 1px solid #e0e9e8; width: 550px; background: #ffffff; margin-left: 25px; margin-right: 25px;"> 
      <p style="font-family: arial; font-size: 18px; margin-left: 35px; margin-top: 15px;">Hi <?php echo $fname; ?>,</p> 
      <p style="font-family: arial; font-size: 14px; margin-left: 35px; margin-right: 30px; margin-top: 10px;">Your account has been created - now it is easier than ever to share with those who share your passion.</p> 
      <p style="font-family: arial; font-size: 12px; font-weight: bold; margin-left: 35px; margin-top: 15px;">Here are three ways for you to get started:</p> 
      <p style="font-family: arial; font-size: 12px; margin-left: 50px; margin-top: 10px;">- <a href="http://www.livthis.com">complete your profile</a></p> 
      <p style="font-family: arial; font-size: 12px; margin-left: 50px; margin-top: 10px;">- install the <a href="http://www.theliv.com/liv/staticpages/button">bookmarklet</a>. It lets you add an item from any website with just one click.</p> 
      <p style="font-family: arial; font-size: 12px; margin-left: 50px; margin-top: 10px;">- <a href="http://www.theliv.com/liv/wishlists/home/everyone">discover great items</a> by other members</p> 
      <p style="font-family: arial; margin-left: 35px; padding-bottom: 20px; padding-top: 25px;">Enjoy!<br>- The Liv Team</p> 
     </div> 
    </div> 
</html> 

这里是我们的文本邮件:

Hi <?php echo $fname; ?>, 
      Your account has been created - now it is easier than ever to share with those who share your passion. 
      Here are three ways for you to get started: 
      - complete your profile 
      - install the bookmarklet. It lets you add an item from any website with just one click. 
      - discover great items by other members 
      Enjoy!- The Liv Team 

谁能帮助吗?

+0

转到Gmail中标记为垃圾邮件的邮件之一。单击向下箭头(通过回复)并显示原始。你看到那里有任何问题吗? – Farray 2011-04-27 16:29:07

+0

我检查了一下,我确实有一些差异。我的回归路径不同。我收到的是不同的。一封电子邮件是www.theliv.com,另一封是theliv.com。那可能会导致这个问题? – 2011-04-27 18:07:36

回答

1

根据此条件检查您的消息。这似乎是一个很好的来源:

http://kb.mailchimp.com/article/how-spam-filters-think

+0

这是一篇很棒的文章。感谢您将它链接到我。我检查了它,幸运的是我没有犯任何错误。我会检查更多的东西。谢谢 – 2011-04-27 18:05:05

+0

没问题... :) – FreeSnow 2011-04-27 18:12:36

0

看起来你错过在你的HTML电子邮件<body>标签。尝试通过HTML验证程序(如W3C Validator)运行它。

+0

我的HTML并不完美,但错误发生在我的所有电子邮件上,并没有导致我在垃圾邮件文件夹中。但是,我确实回去清理了HTML。谢谢。 – 2011-04-27 18:08:29