2

ユーザーがサインアップすると、Web アプリから確認メールが送信されます。このメッセージは、Gmail のみの迷惑メール フォルダに入っています。当社が送信する他のすべての電子メールは、エンド ユーザーの受信トレイで正しく受信されます。私はこれを調査するのに何時間も費やしましたが、それが電子メールの実際の HTML コードなのか、それとも別の問題なのかさえわからないようです。助けていただけますか?

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

誰でも助けてもらえますか?

4

2 に答える 2

1

この基準に照らしてメッセージを確認してください。良いソースのようです:

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

于 2011-04-27T16:27:49.170 に答える
0

<body>HTMLメールにタグがないようです。W3CバリデーターなどのHTMLバリデーターを介して実行してみてください。

于 2011-04-27T16:34:49.630 に答える