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.
user1531158
質問する
85 次
1 に答える
2
すべての SPAM フィルタを完全に回避することはできません。メッセージをできる限り非スパム的に見せるための措置を講じることしかできません。いくつかのアイデア:
- SPFとDKIMを利用する
- メッセージに署名します(自己署名されていない有効な証明書が必要です)
- 有効な
From:
アドレスを使用します (そして、残りのヘッダー データも使用します)。 - メッセージの text/plain バージョンと HTML 形式バージョンの両方を適切に含める
- SPAM のようなトリガー フレーズを使用しないでください ( SpamAssassin の既定のルールを参照してください)。
- SMTP サーバーとドメインがDNS ブラックリストに含まれていないことを確認してください
この以前の議論も参照してください
于 2012-07-22T18:39:02.437 に答える