gpt4 book ai didi

node.js - NodeJS Sendgrid 向多个收件人发送电子邮件时出现问题

转载 作者:行者123 更新时间:2023-12-02 10:10:08 25 4
gpt4 key购买 nike

我在向多个收件人发送邮件时遇到问题。

我的脚本是

var SendGrid = require('sendgrid').SendGrid;
var sendgrid = new SendGrid('<<username>>', '<<password>>');
sendgrid.send({
to: 'nabababa@gmail.com',
from: 'sengupta.nabarun@gmail.com',
bcc: ["sengupta.nabarun@gmail.com","sengupta_nabarun@rediffmail.com"],

我有两个问题

  1. 我可以列出一组收件人吗?
  2. 如何获取密件抄送列表中的一组收件人?

与上述两个查询相关的解决方案确实会有帮助

谢谢纳巴伦

最佳答案

您可以在tobcc 字段中使用收件人数组。

例如:

var SendGrid = require('sendgrid').SendGrid;
var sendgrid = new SendGrid('{{sendgrid username}}', '{{sendgrid password}}');
sendgrid.send({
to: ['one@example.com', 'two@example.com'],
from: 'nick@sendgrid.com',
bcc: ['three@example.com', 'four@example.com'],
subject: 'This is a demonstration of SendGrid sending email to mulitple recipients.',
html: '<img src="http://3.bp.blogspot.com/-P6jNF5dU_UI/TTgpp3K4vSI/AAAAAAAAD2I/V4JC33e6sPM/s1600/happy2.jpg" style="width: 100%" />'
});

如果这对您不起作用并且 Node 没有输出任何错误,请登录 SendGrid 的网站并查看 Email Activity Log 来检查电子邮件是否正在发送。 .

我在测试代码示例时遇到的一件事是,如果您将tobcc发送到同一个gmail地址,gmail会将其全部合并为一个电子邮件(看来它不起作用)。确保测试时将电子邮件发送到完全不同的帐户。

如果您需要一些电子邮件帐户来测试 Guerrilla Mail是创建临时测试帐户的绝佳选择。

关于node.js - NodeJS Sendgrid 向多个收件人发送电子邮件时出现问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17455137/

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