Gmail 中新插入的值未更新草稿,google 应用程序脚本
Drafts is not updating by newly inserted values in gmail, google app script
我想在我的 gmail 中使用 google 应用程序脚本更新或替换或插入现有草稿。我在下面有一个代码,但它没有在现有草稿中插入任何文本。
我想做的是使用 google 应用程序脚本更新或插入或替换我现有的草稿。
function buildAddOn(e)
{
return generatedDrafts();
}
function generatedDrafts()
{
tex = 'This needs to be inserted';
var card = CardService.newCardBuilder();
var cardSection = CardService.newCardSection().setHeader('Texts');
cardSection.addWidget(CardService.newTextButton().setText(tex).setOnClickAction(CardService.newAction().setFunctionName('applyText')
.setParameters({'updatedText':tex})));
return card.addSection(cardSection).build();
}
function applyText(e)
{
content = e.parameters.updatedText;
var response = CardService.newUpdateDraftActionResponseBuilder().setUpdateDraftBodyAction(CardService.newUpdateDraftBodyAction()
.addUpdateContent(content, CardService.ContentType.TEXT).setUpdateType(CardService.UpdateDraftBodyType.IN_PLACE_INSERT)).build();
return response;
}
appscript 宣言看起来像这样
"gmail": {
"contextualTriggers": [
{
"unconditional": {},
"onTriggerFunction": "buildAddOn"
}
],
任何人都可以告诉我我做错了什么,我该如何解决我的问题?
你的问题是你创建了一个通用的插件,而不是一个在消息上触发的插件。
您想遵循 these recommendations 并更改您的清单文件以包含必要的部分。
{
"oauthScopes": [
//...
"https://www.googleapis.com/auth/gmail.addons.current.action.compose",
//...
],
"gmail": {
/...
"contextualTriggers": [{
/...
}],
"composeTrigger": {
"selectActions": [
{
"text": "Insert Text on Emails",
"runFunction": "insertTextAction"
}
],
"draftAccess": "METADATA"
},
}
并且您的代码应该有一个 insertTextAction
函数来创建一个卡片,其中包含 return UpdateDraftActionResponse
:
function insertTextAction(e) {
return generatedDrafts();
}
完成这些更改后,您应该可以开始了!
我想在我的 gmail 中使用 google 应用程序脚本更新或替换或插入现有草稿。我在下面有一个代码,但它没有在现有草稿中插入任何文本。
我想做的是使用 google 应用程序脚本更新或插入或替换我现有的草稿。
function buildAddOn(e)
{
return generatedDrafts();
}
function generatedDrafts()
{
tex = 'This needs to be inserted';
var card = CardService.newCardBuilder();
var cardSection = CardService.newCardSection().setHeader('Texts');
cardSection.addWidget(CardService.newTextButton().setText(tex).setOnClickAction(CardService.newAction().setFunctionName('applyText')
.setParameters({'updatedText':tex})));
return card.addSection(cardSection).build();
}
function applyText(e)
{
content = e.parameters.updatedText;
var response = CardService.newUpdateDraftActionResponseBuilder().setUpdateDraftBodyAction(CardService.newUpdateDraftBodyAction()
.addUpdateContent(content, CardService.ContentType.TEXT).setUpdateType(CardService.UpdateDraftBodyType.IN_PLACE_INSERT)).build();
return response;
}
appscript 宣言看起来像这样
"gmail": {
"contextualTriggers": [
{
"unconditional": {},
"onTriggerFunction": "buildAddOn"
}
],
任何人都可以告诉我我做错了什么,我该如何解决我的问题?
你的问题是你创建了一个通用的插件,而不是一个在消息上触发的插件。
您想遵循 these recommendations 并更改您的清单文件以包含必要的部分。
{
"oauthScopes": [
//...
"https://www.googleapis.com/auth/gmail.addons.current.action.compose",
//...
],
"gmail": {
/...
"contextualTriggers": [{
/...
}],
"composeTrigger": {
"selectActions": [
{
"text": "Insert Text on Emails",
"runFunction": "insertTextAction"
}
],
"draftAccess": "METADATA"
},
}
并且您的代码应该有一个 insertTextAction
函数来创建一个卡片,其中包含 return UpdateDraftActionResponse
:
function insertTextAction(e) {
return generatedDrafts();
}
完成这些更改后,您应该可以开始了!