phpmailer的FROM地址如何更改?我希望以下内容有效,但是,所有发送的电子邮件都使用第一次出现SetFrom()
时设置的电子邮件地址发送。
$mail = new myPHPMailer(true);
$mail->SMTPDebug=2;
$mail->Subject = "My Subject";
$mail->MsgHTML('My Message');
$mail->AddReplyTo('me@myworkcompany.com');
$mail->ClearAllRecipients();
$mail->SetFrom('me@myworkcompany.com');
$mail->AddAddress("someoneelse@otherdomain.com");
$mail->Send();
$mail->ClearAllRecipients();
$mail->SetFrom('default@mydomain.com'); //Does not update FROM address!
$mail->AddAddress("someoneelse@myworkcompany.com");
$mail->Send();
PS。我为什么要这样做?我发现有些公司设置了他们的电子邮件路由器来拒绝所有传入的外部电子邮件,这些电子邮件的发件人电子邮件顶级域名与他们自己的相同。
答案 0 :(得分:1)
调用方法setFrom时,属性Sender设置一次。没有单独设置发件人的方法。但是你可以使用
$mail->Sender = <newvaluehere>;
或
$mail->set('Sender', <NEWVALUEHERE>);
另外,我想建议不要使用这个库,它几乎不一致,也不是生产就绪。你可能会考虑像swiftmailer这样经过验证的软件包。
为什么这个类似乎没有准备好生产
/**
* Set or reset instance properties.
* You should avoid this function - it's more verbose, less efficient, more error-prone and
* harder to debug than setting properties directly.
* Usage Example:
* `$mail->set('SMTPSecure', 'tls');`
* is the same as:
* `$mail->SMTPSecure = 'tls';`
* @access public
* @param string $name The property name to set
* @param mixed $value The value to set the property to
* @return boolean
* @TODO Should this not be using the __set() magic function?
*/