gpt4 book ai didi

PHP Gmail API : can send email but how to add recipient email

转载 作者:可可西里 更新时间:2023-10-31 23:47:32 27 4
gpt4 key购买 nike

我从 https://github.com/google/google-api-php-client/

抓取了一个有效的 gmail api php 代码

我可以使用以下代码发送电子邮件,但没有收件人。在 gmail 已发送项目中,我还可以看到已发送的消息!

$mime = rtrim(strtr(base64_encode($_POST["message"]), '+/', '-_'), '=');
$msg = new Google_Service_Gmail_Message();
$msg->setRaw($mime);
$x = $service->users_messages->send("me", $msg);

如何添加收件人电子邮件地址?在几篇文章中,我读到 To 应该添加到标题中。

最佳答案

是的,将“收件人”、“抄送”或“密件抄送” header 添加到电子邮件中以将电子邮件发送给其他人。在您的情况下,$_POST["message"] 字符串或更好的一些电子邮件消息对象使用标准的 php 电子邮件库。

参见: https://developers.google.com/gmail/api/v1/reference/users/messages/send https://developers.google.com/gmail/api/guides/sending

关于PHP Gmail API : can send email but how to add recipient email,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28746627/

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