大家好,欢迎来到IT知识分享网。
小编典典
您可以通过两种方式设置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文档。它具有有关如何使用该库及其提供的各种功能的非常详细的信息。
2020-07-07
免责声明:本站所有文章内容,图片,视频等均是来源于用户投稿和互联网及文摘转载整编而成,不代表本站观点,不承担相关法律责任。其著作权各归其原作者或其出版社所有。如发现本站有涉嫌抄袭侵权/违法违规的内容,侵犯到您的权益,请在线联系站长,一经查实,本站将立刻删除。 本文来自网络,若有侵权,请联系删除,如若转载,请注明出处:https://yundeesoft.com/22025.html