我正在使用phpmailer发送电子邮件。
当我添加列表 - 取消订阅时,电子邮件将被发送到除gmail之外的所有帐户。它只是被丢弃,它不会进入垃圾邮件,它只是永远不会到达Gmail帐户。当我删除list-unsubscribe时,它会成功发送到gmail帐户。
这是我正在使用的列表取消订阅:
List-Unsubscribe:<http://keepity.com>,<mailto:admin@keepity.com>
这就是它在phpmailer中调用的方式:
$mail->AddCustomHeader("List-Unsubscribe:<http://keepity.com>,<mailto:admin@keepity.com>");
这是调用phpmailer的完整函数。如果我注释掉列表 - 取消订阅,那么邮件将被发送到gmail帐户,否则它永远不会到达。有谁知道为什么不交付?
static function phpmailer_sendmail($mail,$from,$fromAlias,$to,$replyTo,$replyToAlias,$subject,$html,$text) {
require_once (JPATH_COMPONENT.DS.'PHPMailer-master/class.phpmailer.php');
$mail = new PHPMailer(true); // by setting TRUE you enable exceptions
$mail->IsSMTP(true); // SMTP
$mail->SMTPAuth = true; // SMTP authentication
$mail->Mailer = "smtp";
$mail->Host= "xyz"; // Amazon SES
$mail->Port = 465; // SMTP Port
$mail->Username = "xyz"; // SMTP Username
$mail->Password = "xyz"; // SMTP Password
$mail->ClearAllRecipients();
$mail->ClearAddresses();
$mail->ClearCCs();
$mail->ClearBCCs();
$mail->ClearReplyTos();
$mail->ClearAttachments();
$mail->ClearCustomHeaders();
$mail->SetFrom($from, $fromAlias);
$mail->AddReplyTo($replyTo,$replyToAlias);
$mail->Subject = $subject;
$mail->IsHTML(true);
$mail->Body = $html;
$mail->AltBody = $text;
$address = $to;
$addressAlias = $to;
$mail->AddAddress($address, $addressAlias);
$mail->AddCustomHeader("List-Unsubscribe:<http://keepity.com>,<mailto:admin@keepity.com>");
$mail->Send();
}
答案 0 :(得分:5)
函数addCustomHeader获取2个参数 并且unscribe值格式应为
<email_to_unscribe@email.com>, <http://url_to_unscribe.com>
这是一个如何调用它的示例:
$mail->addCustomHeader("List-Unsubscribe",'<admin@keepity.com>, <http://keepity.com/?email='.$address.'>');
答案 1 :(得分:3)
我知道这已经过时了,但是在搜索“List-Unsubscribe”时谷歌的排名很好,所提供的建议并不完全正确。
PHPmailer addCustomHeader只接受一个参数。双引号像这样包装整个标题。
$mail->AddCustomHeader("List-Unsubscribe: <mailto:info@example.com?subject=Unsubscribe>, <http://example.com/unsubscribe.php?mailid=1234>");
List-Unsubscribe有2个参数,一个mailto:和一个可以设置为自动取消订阅电子邮件的URL。当然,你也可以动态地生成mailid(或者你称之为GET var的任何东西)。