如何在Mandrill中添加标签到传出电子邮件(来自Mailchimp的电子邮件服务)?

时间:2016-09-08 10:06:17

标签: php email header smtp mailchimp

我使用mandrill发送电子邮件,我遵循这里的指导原则:

https://mandrill.zendesk.com/hc/en-us/articles/205582147-How-to-Send-with-PHPMailer

<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7">

...并发送电子邮件

但是,API中有一个标记选项, 我想添加标签来跟踪电子邮件:

https://mandrillapp.com/api/docs/messages.php.html

$mail->Host = 'smtp.mandrillapp.com';                 // Specify main and backup server
$mail->Port = 587;                                    // Set the SMTP port
$mail->SMTPAuth = true;                               // Enable SMTP authentication
$mail->Username = 'MANDRILL_USERNAME';                // SMTP username
$mail->Password = 'MANDRILL_APIKEY';                  // SMTP password
$mail->SMTPSecure = 'tls'; 

问题是,我可以添加标签而不包含其API文件,例如在phpmailer中的标题处添加标签?

非常感谢您的帮助

1 个答案:

答案 0 :(得分:1)

我在PHPMailer类中使用了这个变种:

$mail->AddCustomHeader('X-MC-Tags:password,some_other_tag');