我忘了我是怎么设置的。我有两个网站,我通过第二个网站发送电子邮件。这是我的/etc/exim4/passwd.client
文件:
*.google.com:noreplyn@firstsite.com:password
*.google.com:noreply@secondsite.com:password
我正在通过 PHP 的mail()
函数发送带有以下标题的邮件:
$headers = 'From: no-reply <noreply@secondsite.com>' . "\r\n";
$headers .= 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Reply-To: noreply@secondsite.com' . "\r\n";
$headers .= 'Content-type: text/html; charset=utf-8' . "\r\n";
但是我在客户的电子邮件中收到了这个标题:
from: no-reply firstsite.com
reply-to: secondsite.com
to: apathetic012@gmail.com
如何正确设置 exim 的自定义外发电子邮件地址?
PS:我正在使用智能主机(谷歌应用程序)