我正在尝试通过Google API发送电子邮件。
我在node.js中使用googleapi访问Google API。
我的问题是,当我试图发送一个简单的邮件没有附件,我得到以下错误:
'raw' RFC822有效载荷消息字符串或通过/upload/* URL上传消息
我没有在我的请求中定义有附件,我没有看到电子邮件地址有任何错误。
请帮助。我代码:
var google = require('googleapis');
var gmailClass = google.gmail('v1');
var email_lines = [];
email_lines.push("From: "Some Name Here" <rootyadaim@gmail.com>");
email_lines.push("To: hanochg@gmail.com");
email_lines.push('Content-type: text/html;charset=iso-8859-1');
email_lines.push('MIME-Version: 1.0');
email_lines.push("Subject: New future subject here");
email_lines.push("");
email_lines.push("And the body text goes here");
email_lines.push("<b>And the bold text goes here</b>");
var email =email_lines.join("rn").trim();
var base64EncodedEmail = new Buffer(email).toString('base64');
gmailClass.users.messages.send({
auth: OAuth2Client,
userId: "me",
message:
{
raw: base64EncodedEmail
}
},
function(err, results){});
1.0.3版本的google api进行了更改。尝试使用以下语法:
gmailClass.users.messages.send({
auth: OAuth2Client,
userId: "me",
resource:
{
raw: base64EncodedEmail
}
}
确保base64EncodedEmail是url安全的。您可以使用mscdex发布的base64EncodedEmail.replace(/+/g, '-').replace(///g, '_')
代码。此语法适用于v. 1.0.11