我正在使用 Bert 和 Meteor 电子邮件。在我的 MEteor 方法中,我返回发送电子邮件的成功。问题是,发送电子邮件后,它没有返回成功消息。
这是我的示例代码,
Meteor.call('sendEmail',
data.eadd,
'e@gmail.com',
'Invitation',
'test');
return "successful.";
这是我的 sendEmail 功能,
sendEmail(to, from, subject, text) {
check([to, from, subject, text], [String]);
this.unblock();
Email.send({
to: to,
from: from,
subject: subject,
text: text
});
}