2012-01-26 3 views
1

나는 PHP를 사용하여 웹 페이지에서 이메일을 보낸다. Gmail 사용자는이 이메일을 스팸으로 수신합니다. DNS 역방향 레코드와 MX 레코드를 만들었습니다.Gmail의 아파치에서 온 이메일 스팸

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 이메일을 보내는 이유는 무엇입니까? 일반 텍스트 이메일은 스팸으로 신고 될 가능성이 훨씬 적습니다. – ThiefMaster

+0

"비밀번호 복구"등이 일반적인 피싱 이메일 주체이지만,이 문서는 고도의 기술적 인 반응이 아닙니다. –

답변

1

SwiftMailer와 같은 라이브러리 사용을 고려해 볼 수 있습니다. 그런 라이브러리에서 개발자는 스팸으로 표시되는 것을 방지하는 것과 같은 주제에 대해 많은 생각을 해왔으므로 문제가 해결 될 수 있습니다.

+1

[PHPMailer] (http://phpmailer.worxware.com/). 스팸 폴더 (프로젝트 웹 사이트의 거센 1996 - esque 디자인에도 불구하고). – rdlowrey

+1

저는 Zend_Mail을 사용하여 이메일을 보냅니다. – user1171557

+0

나는 SwiftMailer를 시도했다. 스팸에 같은 결과가 나타납니다. – user1171557

1

많은 이메일 제공 업체가 HTML 콘텐츠를 스팸으로 포함하는 이메일을 감지합니다. 이메일 본문에서 간단한 텍스트로 다시 시도하여이 옵션을 제거하십시오.

+0

일반 텍스트 전자 메일을 보내려고했지만 "암호"없이 전자 메일을 보내려고했습니다. 스팸에 같은 결과가 나타납니다. – user1171557

+1

대량 메일 발신자 가이드 라인을 따르십니까? https://support.google.com/mail/bin/answer.py?hl=ko&answer=81126 – alfasin

관련 문제