如何使用gmail api发送新邮件后获取邮件ID?
function sendMessage(userId, email, callback) {
var base64EncodedEmail = btoa(email);
var request = gapi.client.gmail.users.messages.send({
'userId': userId,
'message': {
'raw': base64EncodedEmail
}
});
request.execute(callback);
}
答案 0 :(得分:2)
我找到了解决方案: 在回调函数中,我们将得到一个arguments对象,其中包含有关已发送消息的所有信息,例如id,labelId ... ect:
function callback(){
var idMail=arguments[0].id;
/*Stored into the dataBase or others operations */
}