我想使用SendGrid API为我的“from”字段添加名称,但我不知道如何执行此操作。我尝试将sendgrid.send
中的“from”参数设置为Name <example@example.com>
,但这不起作用。感谢。
答案 0 :(得分:19)
使用最新版Sendgrid Node.js library。
中使用的语法更新了示例set
答案 1 :(得分:11)
您可以通过以下几种方式设置from参数:
var SendGrid = require('sendgrid').SendGrid;
var sendgrid = new SendGrid(user, key);
sendgrid.send({
to: 'you@yourdomain.com',
from: 'example@example.com', // Note that we set the `from` parameter here
fromname: 'Name', // We set the `fromname` parameter here
subject: 'Hello World',
text: 'My first email through SendGrid'
}, function(success, message) {
if (!success) {
console.log(message);
}
});
或者您可以创建一个Email
对象并填写其中的内容:
var Email = require('sendgrid').Email;
var email = new Email({
to: 'you@yourdomain.com',
from: 'example@example.com',
fromname: 'Name',
subject: 'What was Wenger thinking sending Walcott on that early?',
text: 'Did you see that ludicrous display last night?'
});
sendgrid.send(email, function() {
// ...
});
您可能需要花几分钟时间过去the README document on the Github page。它有关于如何使用库及其提供的各种功能的非常详细的信息。
答案 2 :(得分:5)
如果您使用的是nodejs Helper库,请使用以下参数:
from_email = new helper.Email("email@domain.com", "Email Name");
答案 3 :(得分:5)
尽管更新后的用例不包含from
键
https://github.com/sendgrid/sendgrid-nodejs/blob/master/docs/use-cases/flexible-address-fields.md
这个为我工作
to: 'user@userdomain.com',
from: {
name: 'Sender'
email: 'me@mydomain.com',
},
subject: 'Hello World',
html: `<html><p>Hello World</p></html>`
});
答案 4 :(得分:1)
从节点库上的 github,您可以使用以下任一方法从电子邮件和姓名发送
from: {
name: 'Name Here',
email: 'email here'
}
或
from: "Cool Name <some@email.com>"