我想使用 SendGrid API 为我的“发件人”字段添加一个名称,但我不知道该怎么做。我尝试将“from”参数设置为sendgrid.send
,Name <example@example.com>
但没有奏效。谢谢。
问问题
16534 次
5 回答
86
使用最新版本的Sendgrid Node.js 库中使用的语法更新了示例。
sendgrid.send({
to: 'you@yourdomain.com',
from: {
email: 'example@example.com',
name: 'Sender Name'
},
subject: 'Hello World',
text: 'My first email through SendGrid'
});
于 2017-12-20T09:52:19.297 回答
17
您可以通过以下几种方式设置 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() {
// ...
});
您可能需要花几分钟时间阅读 Github 页面上的 README 文档。它包含有关如何使用该库及其提供的各种功能的非常详细的信息。
于 2013-05-26T19:33:00.320 回答
14
虽然更新的用例不包括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>`
});
于 2020-04-26T07:19:02.117 回答
10
如果您使用的是 nodejs Helper 库,请使用以下参数:
from_email = new helper.Email("email@domain.com", "Email Name");
于 2017-01-02T17:46:27.853 回答
2
从节点库上的 github,您可以使用以下任一方法从电子邮件和名称发送
from: {
name: 'Name Here',
email: 'email here'
}
或者
from: "Cool Name <some@email.com>"
于 2021-01-28T05:46:11.443 回答