Gmail插件,只更新邮件的方法如何

Gmail add-on,how is the method of updating only message

我想为 Gmail 制作插件,但由于某些问题我不能。 当我尝试“'update'”“'GmailDraft'”时,它不会出现“'GmailMessage.createDraftreply'”的“'reply'”。

谁能教我如何只更新“'GmailDraft'”上的消息

这里是documentation on how to use the methods in Class GmailDraft.

A user-created draft message in a user's Gmail account.

要更新草稿,如果您有可选参数,请尝试 update(recipient, subject, body) method or update(recipient, subject, body, options)

此外,如果您在回复时遇到问题,也许 this documentation 可以提供帮助。

有一个关于如何创建草稿消息作为对发件人的回复的示例代码。