2012-01-26 7 views
1

私はWebページからphpを使用してメールを送信します。 Gmailユーザーはこのメールを迷惑メールで受信します。 私はDNS逆レコードとMXレコードを作成しました。ここ は、電子メールのコードです:Gmailのapacheからのメールスパム

Delivered-To: [email protected] 
Received: by 10.204.60.140 with SMTP id p12cs47940bkh; 
     Thu, 26 Jan 2012 07:12:08 -0800 (PST) 
Received: by 10.224.116.201 with SMTP id n9mr3202312qaq.16.1327590727329; 
     Thu, 26 Jan 2012 07:12:07 -0800 (PST) 
Return-Path: <[email protected]> 
Received: from banana-app.com (banana-app.com. [107.6.86.26]) 
     by mx.google.com with ESMTP id t19si1801483qcx.182.2012.01.26.07.12.06; 
     Thu, 26 Jan 2012 07:12:07 -0800 (PST) 
Received-SPF: pass (google.com: domain of [email protected] designates 107.6.86.26 as permitted sender) client-ip=107.6.86.26; 
Authentication-Results: mx.google.com; spf=pass (google.com: domain of [email protected] designates 107.6.86.26 as permitted sender) [email protected] 
Received: from banana-app.com (banana-app.com [127.0.0.1]) 
    by banana-app.com (8.13.8/8.13.8) with ESMTP id q0QFC64q013520 
    for <[email protected]>; Thu, 26 Jan 2012 10:12:06 -0500 
Received: (from [email protected]) 
    by banana-app.com (8.13.8/8.13.8/Submit) id q0QFC6Rq013519; 
    Thu, 26 Jan 2012 10:12:06 -0500 
Message-Id: <[email protected]> 
To: [email protected] 
Subject: Password Recovery 
X-PHP-Originating-Script: 0:Sendmail.php 
From: info <[email protected]> 
Reply-To: [email protected] 
Date: Thu, 26 Jan 2012 17:12:06 +0200 
Content-Type: text/html; charset=UTF-8 
Content-Transfer-Encoding: quoted-printable 
Content-Disposition: inline 
MIME-Version: 1.0 

=0A    Hello,=0A    <BR/>=0A    You= 
recently requested to reset the password for your account.=0A   = 
<BR/>=0A    Banana=0A 

誰かが問題を見つける私を助けてくださいことはできますか?

+1

なぜ「リセットパスワード」メールと同じような簡単なHTMLメールを送信しますか?平文の電子メールは、SPAMとしてフラグを立てる可能性は非常に低いです。 – ThiefMaster

+0

"パスワードリカバリ"などが一般的なフィッシングメールの件名ですが、これは高度に技術的な回答ではないことがわかりました –

答えて

1

SwiftMailerなどのライブラリの使用を検討できます。そのような図書館では、開発者はスパムとしてマークするのを防ぐなどの話題をたくさん考えているので、これがあなたの問題を解決するかもしれません。

+1

[PHPMailer](http://phpmailer.worxware.com/)。 (1996年の巧妙なプロジェクトウェブサイトの酷い設計にもかかわらず)。 – rdlowrey

+1

Zend_Mailを使用して電子メールを送信します。 – user1171557

+0

私はSwiftMailerを試しました。同じ結果、スパムメール。 – user1171557

1

多くの電子メールプロバイダは、HTMLコンテンツを含む電子メールを迷惑メールとして検出します。 このオプションを削除するには、email-bodyの簡単なテキストでもう一度お試しください。

+0

私はプレーンテキストの電子メールを送信しようとしましたが、「パスワード」なしで電子メールを送信しようとしました。同じ結果、スパムメール。 – user1171557

+1

バルク送信者ガイドラインに従っていますか? https://support.google.com/mail/bin/answer.py?hl=ja&answer=81126 – alfasin

関連する問題