我正在使用 InboxSDK 的 presending 事件在发送电子邮件之前检查条件。对于 selectedProject!==0 的情况,未发送电子邮件。有没有人有意见。
composeView.on('presending', (event) => {
if(selectedProject!==0){
//console.log(selectedProject);
composeView.send();
}else{
console.log(selectedProject);
event.cancel();
console.log('please select a project for the email');
alert('please select a project for the email');
initDropdown();//show the dropdown to select projects
}