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

时间:2015-06-02 08:28:02

标签: javascript email google-api google-api-client

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

我的问题是,当我尝试发送没有附件的简单邮件时,我收到以下错误:

  

'原料' RFC822有效负载消息字符串或上传消息通过/ upload / * URL required`

我的代码

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 个答案:

答案 0 :(得分:15)

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

如果您没有附件,查询看起来就像我在这里写下的那样

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);
});