0

I have written a script for my clients to generate a newsletter form, embed it on their website, collect email addresses and then email them using a php while and PHPMailer.

Currently, the script uses a "double opt in" which sends an email from "myclient@myclientsemail.com" to the subscriber to click on a confirm link that then goes to "http://myserver.com" to complete the confirmation process.

My question is,

the mail address they are receiving the confirm script from and the address they are confirming their email address with is different, will this be a problem?

In other words, does the spam filter add the confirm email "from address" to the friends list or the address of the link in the email?

The desired end result obviously being the "from address" (my clients address) being the one that will not be junked in future.

Thanks,

Anthony

4

1 に答える 1

1

私の会社も似たようなことをしています。ダブルオプトインは、有効な結果が得られるようにするためにユーザーが行っていることであり、ユーザーの敵から送信されたメールでアカウントにスパムを送り込もうとしたものではありません。理論によれば、誰かがそのように悪意を持った場合、実際の読み取りアクセスと2番目のオプトインに応答する時間/手段がなく、可能な限りフェイルプルーフになります。

スパムフィルターは、あなたがオプトインしたかどうかをまったく知りません。彼らは、彼らが何を見て、誰が送信を行っているかを知っているだけです。承認を得ているユーザーが同じであることが確実である限り、問題はありません。ヘッダーを適切に構成し、リストの正確性を確保し、メール爆撃(つまり、ホストに数千のメッセージを短時間でロードする)を行わず、「スパム」ではないコンテンツを含めると、問題ありません。熱心なIT担当者とスパムフィルター、およびWebの分散性のおかげで、電子メールの配信を100%保証する方法は事実上ありません。

新しいシステムであるため、ホストはまだ「信頼」されていないため、平均よりも高いバウンス統計が得られる可能性があります。ホストの信頼を得ている間、最初はメールが「だまされている」ことを確認するために、送信時に「ブレーク」スクリプトを実行することをお勧めします。確立されたサーバーを使用している場合でも、私の会社のポリシーでは、ホストへの連続した電子メールは50ミリ秒未満の休憩で配信され、それは私たちにとってうまく機能しています(1日あたり10万以上を配信します)。オプトアウト、住所、適切な件名などのスパム項目...例外はありません。

于 2010-10-19T21:41:33.960 に答える