Gmail 我的服务器阻止了来自谷歌用户的PHPMailer?

Gmail 我的服务器阻止了来自谷歌用户的PHPMailer?,gmail,phpmailer,Gmail,Phpmailer,Hi im使用phpmailer从我的网站联系人表单接收消息。 电子邮件是必填字段。 除了gmail,我收到所有的信息,即使是来自虚假的电子邮件地址。 当用户在“电子邮件”字段中插入gmail地址时,联系人表单将响应已发送的邮件,但用户在其垃圾邮件gmail文件夹中收到以下错误: The original message was received at Tue, 24 Sep 2013 12:08:21 -0700 from localhost [127.0.0.1] ----- The fo

Hi im使用phpmailer从我的网站联系人表单接收消息。 电子邮件是必填字段。 除了gmail,我收到所有的信息,即使是来自虚假的电子邮件地址。 当用户在“电子邮件”字段中插入gmail地址时,联系人表单将响应已发送的邮件,但用户在其垃圾邮件gmail文件夹中收到以下错误:

The original message was received at Tue, 24 Sep 2013 12:08:21 -0700
from localhost [127.0.0.1]

----- The following addresses had permanent fatal errors -----
  <info@mywebsitename.com>
  (reason: 553 sorry, your mail was administratively denied. (#5.7.1))

----- Transcript of session follows -----
  ... while talking to relay-hosting.secureserver.net.:
  MAIL From:<usernamemail@gmail.com> SIZE=1543 BODY=8BITMIME
  <<< 553 sorry, your mail was administratively denied. (#5.7.1)
  501 5.6.0 Data format error

Reporting-MTA: dns; xxxxxxx.xxx.xxxx.xxxx.secureserver.net
Received-From-MTA: DNS; localhost
Arrival-Date: Tue, 24 Sep 2013 12:08:21 -0700
Final-Recipient: RFC822; info@mywebsitename.com
Action: failed
Status: 5.1.3
Diagnostic-Code: SMTP; 553 sorry, your mail was administratively denied. (#5.7.1)
Last-Attempt-Date: Tue, 24 Sep 2013 12:08:22 -0700
原始信息于2013年9月24日星期二12:08:21-0700收到
来自本地主机[127.0.0.1]
-----以下地址有永久性致命错误-----
(原因:553抱歉,您的邮件被行政拒绝。(#5.7.1))
-----会议记录如下-----
... 在与中继主机.secureserver.net交谈时:
邮件发件人:SIZE=1543 BODY=8BITMIME

好的,我在回答我的问题

是的,我的服务器(godaddy)阻止了gmail地址

它似乎还阻止了雅虎、美国在线、live、hotmail和其他一批由于垃圾邮件(如他们所说)而未“拥有”的注册域名

我把标题改了一点

$mail->SetFrom = 'info@myregistereddomain.com'
$mail->AddReplyTo( $email , $name );
$mail->AddAddress( $toemail , $toname );
现在它开始工作了