无法从GMail API

时间:2017-02-16 06:45:35

标签: php gmail base64 mime

发送电子邮件的PHP代码:

$mime = rtrim(strtr(base64_encode($strRawMessage), '+/', '-_'), '=');
$msg = new Google_Service_Gmail_Message();
$msg->setRaw($mime);
$objSentMsg = $service->users_messages->send("me", $msg);

$ strRawMessage包含一个url http://localhost/gmail/index.php?user=abc, 收到电子邮件时,网址是 http://localhost/gmail/index.php?userabc, 在“用户”之后缺少'=',如何解决这个问题?感谢。

0 个答案:

没有答案