php smtp reply,php – 在电子邮件中设置replyTo字段
我有一个SMTP问题.我创建了一个
PHP脚本来发送电子邮件.要求是我需要从’email1@example.com’发送电子邮件,但我需要回复’email2@example.com’
我在reply-to header字段中添加了email2@example.com.我遇到的唯一问题是,当有人收到电子邮件并点击回复按钮时,电子邮件地址中将显示email1@example.com和email2@example.com.
有没有什么办法可以从TO字段中删除email1@example.com,只显示在回复字段中指定的电子邮件地址?
我使用的是PHPMailer,代码如下:
$this->phpmailer->IsSMTP();
$this->phpmailer->Host = $server;
$this->phpmailer->Port = $port;
$this->phpmailer->SetFrom($fromEmail, $fromName); //this is email1@example.com
$this->phpmailer->AddReplyTo($replyEmail,$fromName); //this is email2@example.com
$this->phpmailer->Subject = $subject;
$this->phpmailer->AltBody = $msgTXT; // non-html text
$this->phpmailer->MsgHTML($msgHTML); // html body-text
$this->phpmailer->AddAddress($email);
本文来自互联网用户投稿,文章观点仅代表作者本人,不代表本站立场,不承担相关法律责任。如若转载,请注明出处。 如若内容造成侵权/违法违规/事实不符,请点击【内容举报】进行投诉反馈!
