我有一个托管在 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]) ?