使用 Google Apps Script 中的 GMail API 发送电子邮件



我有一封原始电子邮件(在操场上测试并正常工作),我想从Google Apps Script使用Google的Gmail API发送它。

我找不到请求的正确语法:

var RequestUrl = "https://www.googleapis.com/gmail/v1/users/emailAccount/messages/send";
var RequestArguments = {
    muteHttpExceptions:true,
    headers: {Authorization: 'Bearer ' + token
             'GData-Version': '3.0',
             'Content-Type': "message/rfc822",
             },
    payload: {"raw":raw},
    method:"post"
  };    
var result = UrlFetchApp.fetch(RequestUrl,RequestArguments);

我的语法有什么问题?

在Google Apps Script中,您可以使用高级Gmail服务,而无需直接使用Web API。请记住,必须在使用前启用该服务。

/**
 * Send a raw RFC 2822 formatted and base64url encoded email
 * using the Advanced Gmail service.
 *
 * From http://stackoverflow.com/a/35073785/1677912
 *
 * @param {String}  raw  RFC 2822 formatted and base64url encoded message
 *
 * @returns {String}     Message ID of the message (now in Sent Messages).
 */
function sendRawMessage( raw ) {
  var message = Gmail.newMessage();
  message.raw = raw;
  var sentMsg = Gmail.Users.Messages.send(message, 'me');
  return sentMsg.id;
}

我找到了我问题的解决方案:

var RequestArguments = {
  headers: {Authorization: 'Bearer ' + token},
  method: "post",
  contentType: "application/json",
  payload: JSON.stringify(jsonMessage)
};

jsonMessage 是整个消息,而不仅仅是原始部分!

相关内容

  • 没有找到相关文章

最新更新