配置exim的传出电子邮件地址

时间:2012-08-25 02:39:59

标签: php email debian exim4

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

1 个答案:

答案 0 :(得分:2)

设置信封From

mail($recipient, $subject, $body, $headers, '-f noreply@secondsite.com');