SendGrid Cc和Bcc不适用于PHP

前端之家收集整理的这篇文章主要介绍了SendGrid Cc和Bcc不适用于PHP前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用带有PHP的sendgrid,我已经使用了客户端库和curl选项这两个选项.到目前为止,我已经能够直接使用addTo选项发送电子邮件,没有任何问题.但是当我尝试添加Cc或Bcc选项时,电子邮件仍然会被发送,但副本永远不会被发送. PHP版本有任何已知问题吗?在其他项目中,java库工作得很好.

这是一段简单的代码,我正在尝试使其工作

<?PHP
require ('sendgrid/sendgrid-PHP.PHP');

$sendgrid = new SendGrid('user','pwd');

$mail = new SendGrid\Email();
$mail ->addTo("mymail@gmail.com");
$mail ->addCc("other@otherserver.com");
$mail ->setFrom("sender@server.com");
$mail ->setSubject("TEST");
$mail->setHtml("<h1>Example</h1>");
$sendgrid->send($mail);

?>
该文档似乎没有addCc方法.
你可以尝试这些替代品.
$mail = new SendGrid\Email();
$mail->addTo('foo@bar.com')->
       addTo('someotheraddress@bar.com')->
       addTo('another@another.com');

要么

$mail   = new SendGrid\Email();
$mail->addBcc('foo@bar.com');
$sendgrid->send($mail);

https://github.com/sendgrid/sendgrid-php#bcc

原文链接:https://www.f2er.com/php/134405.html

猜你在找的PHP相关文章