How to send a reply to an mail using Gmail API(如何使用Gmail API发送回复邮件)
本文介绍了如何使用Gmail API发送回复邮件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在使用Gmail API发送一封电子邮件,发送成功。我想知道如何用php回复那个已经发送的人。
在此附上我的发送代码:
$line = "
";
$strMailContent = $message;
$strMailTextVersion = strip_tags($strMailContent, '');
$strRawMessage = "";
$boundary = uniqid(rand(), true);
$subjectCharset = $charset = 'utf-8';
$strToMail = $to;
$strSubject = $subject;
$strRawMessage .= 'To: ' . ($strToMail) . "
";
if(!empty($_POST['cc']) || !empty($_POST['bcc'])){
$cc = $_POST['cc'];
$bcc = $_POST['bcc'];
$strRawMessage .= "Cc: $cc". $line;
$strRawMessage .= "Bcc: $bcc". $line;
}
$strRawMessage .= 'Subject: =?' . $subjectCharset . '?B?' . base64_encode($strSubject) . "?=
";
$strRawMessage .= 'MIME-Version: 1.0' . "
";
$strRawMessage .= 'Content-type: Multipart/Mixed; boundary="' . $boundary . '"' . "
";
$filePath = $file_tmp_name;
$mimeType = 'text/plain; charset="UTF-8" ';
$fileName = $file_name;
$fileData = base64_encode(file_get_contents($filePath));
$strRawMessage .= "
--{$boundary}
";
$strRawMessage .= 'Content-Type: '. $mimeType .'; name="'. $fileName .'";' . "
";
$strRawMessage .= 'Content-Description: ' . $fileName . ';' . "
";
$strRawMessage .= 'Content-Disposition: attachment; filename="' . $fileName . '"; size=' . filesize($filePath). ';' . "
";
$strRawMessage .= 'Content-Transfer-Encoding: base64' . "
";
$strRawMessage .= chunk_split(base64_encode(file_get_contents($filePath)), 76, "
") . "
";
$strRawMessage .= '--' . $boundary . "
";
$strRawMessage .= $strMailContent;
$mime = rtrim(strtr(base64_encode($strRawMessage), '+/', '-_'), '=');
$base64 = base64_encode($mime);
$data = '{ "raw" : "'.$mime.'" }';
$send = Qassim_HTTP(1, $url, $header, $data);
在这里,我将收件人地址作为已发送人员邮件ID传递,并且主题已是已使用的主题。
如何更改此代码以发送回复。请帮帮我
推荐答案
您需要传递要回复的邮件的线程ID,并为新邮件设置相同的主题。我更喜欢使用某个库来生成消息的原始字符串,而不是手动编写,以便将出错的可能性降至最低。以下是使用PHPMailer的示例。
$gmail = new Google_Service_Gmail($client);
$message = new Google_Service_Gmail_Message();
$optParam = array();
$referenceId = '';
$thread = $gmail->users_threads->get($userId, $threadId);
$optParam['threadId'] = $threadId;
$threadMessages = $thread->getMessages($optParam);
$messageId = $threadMessages[0]->getId();
$messageDetails = $this->getMessageDetails($messageId); //omitted for simplicity: returns prepared message data.
$messageDetails = $messageDetails['data'];
$subject = $messageDetails['headers']['Subject'];
$mail = new PHPMailer();
$mail->CharSet = 'UTF-8';
$mail->From = $from_email;
$mail->FromName = $from_name;
$mail->addAddress($to);
$mail->Subject = $subject;
$mail->Body = $body;
$mail->preSend();
$mime = $mail->getSentMIMEMessage();
$raw = $this->Base64UrlEncode($mime); //omitted for simplicity: Encodes the data in base 64 format for sending.
$message->setRaw($raw);
$message->setThreadId($threadId);
$response = $gmail->users_messages->send($userId, $message);
userId
是登录用户的ID,而threadId
是您要回复的邮件的主题ID。
我在使用Google的PHPSDK时遇到了很多困难,而且缺乏合适的示例,所以我编写了一个涵盖Gmail API大部分函数的PHP包装器。它涵盖了上面的解释,如果你深入研究它,你会发现上面的例子中省略的逻辑。您可以找到here。
这篇关于如何使用Gmail API发送回复邮件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:如何使用Gmail API发送回复邮件
基础教程推荐
猜你喜欢
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- 在多维数组中查找最大值 2021-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- 超薄框架REST服务两次获得输出 2022-01-01