0

我有一个托管在 Lamp 服务器上的网站,有一个联系表格将使用 phpmailer 从 smtp (gmail) 发送电子邮件,

我在 phpmailer 脚本中添加了一个自定义主机名

  public $Hostname          = 'www.google.com';

  /**
   * Sets the message ID to be used in the Message-Id header.
   * If empty, a unique id will be generated.
   * @var string
   */

当我查看电子邮件的来源时,标题中有一行

Received: from www.google.com (234092384281.ctinets.com. [server.ip.ip.ip])
        by mx.google.com with ESMTPSA id ve6sm3340494pbc.21.2013.05.29.21.17.15
        for <mygmailacc@gmail.com>
        (version=TLSv1 cipher=RC4-SHA bits=128/128);
        Wed, 29 May 2013 21:17:16 -0700 (PDT)

是否可以删除 (234092384281.ctinets.com. [server.ip.ip.ip]) ?

4

1 回答 1

0

不,当您使用 Google SMTP 时这是不可能的,他们会控制它。不是你。如果您必须摆脱它,那么您将不得不使用自己的 SMTP 服务器

于 2013-05-30T04:38:46.207 回答