1

我忘了我是怎么设置的。我有两个网站,我通过第二个网站发送电子邮件。这是我的/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:我正在使用智能主机(谷歌应用程序)

4

1 回答 1

2

设置你的信封From

mail($recipient, $subject, $body, $headers, '-f noreply@secondsite.com');
于 2012-08-25T13:47:24.773 回答