我正在为gmail创建chrome扩展程序, 当用户单击扩展程序创建的按钮时,我想发送邮件。我正在使用inboxsdk创建扩展。
我正在使用以下代码创建按钮
InboxSDK.load('1', '**************').then(function(sdk){
// the SDK has been loaded, now do something with it!
sdk.Compose.registerComposeViewHandler(function(composeView){
// a compose view has come into existence, do something with it!
composeView.addButton({
title: "button-title-goes",
iconUrl: 'https://image.ibb.co/mXS2ZU/images.png',
onClick: function(event) {
console.log( event );
event.composeView.insertHTMLIntoBodyAtCursor('<img src="https://image.ibb.co/mXS2ZU/images.png" alt="Smiley face" height="1" width="1">');
},
});
});
});
我想在用户单击此按钮时发送邮件。
答案 0 :(得分:1)
使用撰写视图send()
函数,如下所示。
sdk.Compose.registerComposeViewHandler(function(composeView){
composeView.addButton({
title: "button-title-goes",
iconUrl: 'https://image.ibb.co/mXS2ZU/images.png',
onClick: function(event) {
console.log( event );
event.composeView.insertHTMLIntoBodyAtCursor('<img src="https://image.ibb.co/mXS2ZU/images.png" alt="Smiley face" height="1" width="1">');
composeView.send();
},
});
});
您甚至可以移交一个可选的配置对象,该对象允许您发送和存档。 InboxSDK - ComposeView