使用 javascript 通过 google api 发送邮件失败

IT技术 javascript email google-api google-api-client
2021-03-20 12:51:24

我正在尝试使用 JavaScript 通过 Google API 发送电子邮件。

我的问题是,当我尝试发送不带附件的简单邮件时,出现以下错误:

'raw' RFC822 有效负载消息字符串或通过 /upload/* URL 需要上传消息`

我的代码

function sendMessage() {
gapi.client.load('gmail', 'v1', function() {
    // Web-safe base64 
    var to = 'someone@someone.nl',
        subject = 'Hello World',
        content = 'send a Gmail.'

    var base64EncodedEmail = btoa(
          "Content-Type:  text/plain; charset=\"UTF-8\"\n" +
          "Content-length: 5000\n" +
          "Content-Transfer-Encoding: message/rfc2822\n" +
          "to: someone@someone.nl\n" +
          "from: \"test\" <test@gmail.com>\n" +
          "subject: Hello world\n\n" +

          "The actual message text goes here"
            ).replace(/\+/g, '-').replace(/\//g, '_');

    var mail= base64EncodedEmail;
    console.log(mail);
    var request = gapi.client.gmail.users.messages.send({
      'userId': "me",
      'message': {
          'raw': mail
        }
    });
    request.execute(function(response){
     console.log(response);
   });
  });        

}
1个回答

几天后,我自己找到了答案。问题是只有当您在电子邮件中发送附件时才能使用正文中的“消息”。

如果你没有附件查询看起来像我在这里写的

var mail= base64EncodedEmail;
console.log(mail);
var request = gapi.client.gmail.users.messages.send({
  'userId': "me",
  'resource': {
      'raw': mail
    }
});
request.execute(function(response){
 console.log(response);
});
Python 3.8:raw = base64.urlsafe_b64encode(message.as_bytes()).decode() gmail_api.users().messages().send(userId="me", body = {'raw': raw}).execute( )
2021-04-25 12:51:24
谢谢!我发现它不一致drafts.create并且message.send没有使用相同的语法......
2021-04-30 12:51:24
这个有python版本吗?
2021-05-16 12:51:24