gpt4 book ai didi

sendgrid - 在 sendgrid API 中保留收件人

转载 作者:行者123 更新时间:2023-12-02 19:22:35 26 4
gpt4 key购买 nike

我正在使用 sendgrid API 向多个收件人发送电子邮件!

<?php


$email = new SendGrid\Email();
$sendgrid = new SendGrid('API_KEY');

$email
->addTo(array('first@mail.com','second@mail.com'..))
->setFrom('my@mail.com')
->setSubject('Subject goes here')
->setText('Hello World!')
->setHtml('<strong>Hello World!</strong>')
;

$sendgrid->send($email);

现在,我想知道是否有任何方法可以将第二封电子邮件隐藏在第一封电子邮件的“收件人”标题中?

最佳答案

使用SMTP API用于邮件合并类型功能。

使用sendgrid-php ,看起来像:

$email = new SendGrid\Email();
$email
->addSmtpapiTo('foo@bar.com')
->addSmtpapiTo('another@another.com', 'Mike Bar')
;
$sendgrid->send($email);

或者对于数组:

$email = new SendGrid\Email();
$emails = array("foo@bar.com", "Brian Bar <bar@example.com>", "other@example.com");
$email->setSmtpapiTos($emails);
$sendgrid->send($email);

关于sendgrid - 在 sendgrid API 中保留收件人,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35875101/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com