我有一个 SMTP 问题。我创建了一个 PHP 脚本来发送电子邮件。要求是我需要从“email1@example.com”发送电子邮件,但我需要回复到“email2@example.com”
我已email2@example.com
在reply-to
标题字段中添加。我遇到的唯一问题是,当有人收到电子邮件并单击回复按钮时,两者email1@example.com
都email2@example.com
显示在TO
字段中。
有什么方法可以email1@example.com
从 TO 字段中删除,只显示字段中指定的电子邮件地址reply-to
?
我正在使用 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);