2
所以我的email.send正在工作,但只有當我只發送電子郵件給一個用戶。 這裏是一個meteor.method內部的代碼:meteor.js email.send試圖發送給用戶陣列時不工作
sendEmail: function (to, from, subject, text) {
check([to, from, subject, text], [String]);
this.unblock();
Email.send({
to: to,
from: from,
subject: subject,
text: text
});
}
});
工作的客戶端代碼:
Meteor.call('sendEmail',
'[email protected]',
'[email protected]',
'test',
'testing meteor email');
不工作:
Meteor.call('sendEmail',
['[email protected]','[email protected]','[email protected]'],
'[email protected]',
'test',
'testing meteor email');
缺少什麼我在這裏?這是什麼docs.meteor說:「字符串或字符串陣列 RFC5322」若要:「地址[西]」
即時使用用戶數組一切都應該工作正常。