0

I am testing code that generates a random_password when a user has forgotten there password and sends it there email address. the code works fine except it goes into spam, my question is, are there any measures I can take that will get the message to go into inbox, or do you need to be registered as a genuine company company to have automated emails certified. Thanks.

4

1 に答える 1

2

すべての SPAM フィルタを完全に回避することはできません。メッセージをできる限り非スパム的に見せるための措置を講じることしかできません。いくつかのアイデア:

  • SPFDKIMを利用する
  • メッセージに署名します(自己署名されていない有効な証明書が必要です)
  • 有効なFrom:アドレスを使用します (そして、残りのヘッダー データも使用します)。
  • メッセージの text/plain バージョンと HTML 形式バージョンの両方を適切に含める
  • SPAM のようなトリガー フレーズを使用しないでください ( SpamAssassin の既定のルールを参照してください)。
  • SMTP サーバーとドメインがDNS ブラックリストに含まれていないことを確認してください

この以前の議論も参照してください

于 2012-07-22T18:39:02.437 に答える