【发布时间】:2016-04-09 16:00:29
【问题描述】:
我正在使用GmailThread.reply(body) 回复电子邮件 但问题是,与在 web 或 android 上使用 gmail 应用程序回复不同,回复没有原始消息的副本。 这是我的代码:
function testreply() {
var threads = GmailApp.getInboxThreads();
Logger.log(threads[0].getFirstMessageSubject());
threads[0].reply("test reply");
}
我的问题是这是预期的行为吗? 是否可以在回复中包含原始消息(就像 gmail web 在回复中为原始消息添加特殊格式一样)?
【问题讨论】: