gpt4 book ai didi

node.js - 发送网格 : add cc in email

转载 作者:搜寻专家 更新时间:2023-11-01 00:14:47 24 4
gpt4 key购买 nike

我在我的应用程序中使用 sendgrid 发送电子邮件。如果用户回复我的邮件,现在我想添加抄送或密件抄送。我该怎么做呢。让我先解释一下。我正在使用我的应用程序在我的 Web 应用程序上发送用户反馈的答案,假设我正在通过“noreply@mydomain.com”发送电子邮件,并且用户在他/她的 gmail/yahoo 收件箱或任何其他电子邮件服务中收到此邮件。在这种情况下,用户可以单击回复此邮件。所以现在,您的“收件人:”已包含“noreply@mydomain.com”默认回复地址。没关系。现在我想添加“cc:”(抄送),如下所示“feedback@mydomain.com”。这该怎么做?

最佳答案

你可以在调用sendgrid npm模块时传递cc值。见下文。

var sendgrid  = require('sendgrid')(api_user, api_key);
var email = new sendgrid.Email({
to: 'foo@bar.com',
from: 'you@yourself.com',
cc: 'someone@else.com',
subject: 'Subject goes here',
text: 'Hello world'
});
sendgrid.send(email, function(err, json) {
if (err) { return console.error(err); }
console.log(json);
});

关于node.js - 发送网格 : add cc in email,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30099882/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com