在我的 Gmail 插件中,我希望能够阅读当前电子邮件的原始 (MIME) 消息。
我怎样才能做到这一点?
e.messageMetadata.messageId
您可以使用at检索当前消息的消息 ID function buildAddOn(e){}
。我无法理解raw (MIME) message
你的问题。所以我提出了2种模式。
Byte[]
,您可以使用 Advanced Google Services 从消息 ID 中检索它,Gmail.Users.Messages.get()
如下所示。
Gmail.Users.Messages.get("me", messageId, {format: "RAW"}).raw
String
方式从消息 ID 中检索它。GmailApp.getMessageById()
GmailApp.getMessageById(messageId).getRawContent()
"https://www.googleapis.com/auth/gmail.addons.execute", "https://mail.google.com/"
范围。
如果我误解了你的问题,我很抱歉。