关于Gmail的php邮件 - 我疯了还是什么?

时间:2011-08-21 18:55:43

标签: php email gmail email-headers

这是我的php功能:

$message="Hello";
$headers='From: "Sender" <sender@hosting.com>'."\r\n".'Reply-To: sender@hosting.com'."\r\n".'X-Mailer: PHP/'.phpversion();
mail("destination@gmail.com", "Title", $message, $headers);

我在gmail上收到邮件,但是当我点击“回复”时,我会在字段中看到:

From : sender@hosting.com
To : destination@gmail.com

:O应该是相反的。为什么这么麻烦?

修改

当我拿到它时,这是gmail邮件的标题:

from    My Hosting sender@hosting.com trougth webxc13s09.ad.aruba.it 
reply to    sender@hosting.com
to  destination@gmail.com

这是正确的!当我打开该邮件并单击“回复”时,Gmail字段From / To将填充为:

from : sender@hosting.com
to : destination@gmail.com

但错了。应该是

from : destination@gmail.com
to : sender@hosting.com

1 个答案:

答案 0 :(得分:0)

我自己测试过。为什么你认为这是不正确的?

来自PHP doc:

bool mail ( string $to , string $subject , string $message [, string $additional_headers [, string $additional_parameters ]] )

修改

在阅读完编辑后,我按下了Gmail中的回复按钮。

This对我来说仍然看起来不错。对不起,我无法帮助。