2011-04-27 123 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