我正在拼命挣扎。我想从一个选中的表中收集一组电子邮件地址(一些选中但不是全部)并将它们传递给 Mandrill JavaScript 代码以发送。
这里有2个问题:
- 一般如何发送多封电子邮件以及
- 如何将数组传递给 mandrill 代码以执行电子邮件发送。
代码是:
<script>
function log(obj) {
$('#response').text(JSON.stringify(obj));
}
function sendTheMail() {
// Send the email!
alert('scripting');
var emails = [];
var first = [];
var last = [];
$('tr > td:first-child > input:checked').each(function() {
//collect email from checked checkboxes
emails.push($(this).val());
first.push($(this).parent().next().next().text());
last.push($(this).parent().next().next().next().text());
});
var new_emails = JSON.stringify(emails);
alert(new_emails);
//create a new instance of the Mandrill class with your API key
var m = new mandrill.Mandrill('my_key');
// create a variable for the API call parameters
var params = {
"message": {
"from_email": "rich@pachme.com",
"to": [{"email": new_emails}],
"subject": "Sending a text email from the Mandrill API",
"text": "I'm learning the Mandrill API at Codecademy."
}
};
m.messages.send(params, function(res) {
log(res);
},
function(err) {
log(err);
});
}
</script>
电子邮件地址数组的警报是:
["richardwi@gmail.com","richard.illingworth@refined-group.com","mozartfm@gmail.com"]
产生的错误信息是:
[{"email":"[\"richardwi@gmail.com\",\"richard.illingworth@refined-group.com\",\"mozartfm@gmail.com\"]","status":"invalid","_id":"0c063e8703d0408fb48c26c77bb08a87","reject_reason":null}]
在更一般的说明中,以下仅适用于一个电子邮件地址:
“收件人”:[{“电子邮件”:“user@gmail.com”}],
但
“收件人”:[{“电子邮件”:“user@gmail.com”,“anotheruser@gmail.com”}],
没有,所以我什至无法对多次发送进行硬编码。
有任何想法吗?感谢所有帮助。