我能够发送没有问题的电子邮件,但即使我在headers参数中输入了这封电子邮件,该电子邮件也不是CC。我在下面的代码中遗漏了什么?
$to = 'myemail@example.com';
$subject = 'This email came from the site!';
$headers = array(
'Content-type: text/html',
'Cc: otheremail@example.com',
);
$body = $_POST['message'];
$response = wp_mail( $to, $subject, $body, $headers );
答案 0 :(得分:0)
所以问题是我需要以这种格式在我的数组中添加cc电子邮件
Alias Name <otheremail@example.com>
而不仅仅是电子邮件
otheremail@example.com
。
现在,电子邮件正确无误。
完整的工作样本。
$to = 'myemail@example.com';
$subject = 'This email came from the site!';
$headers = array(
'Content-type: text/html',
'Cc: Alias Name <otheremail@example.com>',
);
$body = $_POST['message'];
$response = wp_mail( $to, $subject, $body, $headers );