Я пытаюсь отправить электронное письмо через API Google.
Я использую googleapis для доступа к API Google в node.js.
Моя проблема в том, что когда я пытаюсь отправить простую почту без вложений, я получаю следующую ошибку:
'raw' строка сообщения полезной нагрузки RFC822 или загрузка сообщения через /upload/ * требуемый URL
Я не определил в своем запросе, что есть вложение, и я не вижу ошибок в адресах электронной почты.
Пожалуйста, помогите.
Мой код:
var google = require('googleapis');
var gmailClass = google.gmail('v1');
var email_lines = [];
email_lines.push("From: \"Some Name Here\" <[email protected]>");
email_lines.push("To: [email protected]");
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("\r\n").trim();
var base64EncodedEmail = new Buffer(email).toString('base64');
gmailClass.users.messages.send({
auth: OAuth2Client,
userId: "me",
message:
{
raw: base64EncodedEmail
}
},
function(err, results){});