如何在 sendgrid 上添加发件人姓名
How do i add a sender name on send grid
下面的代码是我的 sendgrid 辅助函数
目前,这是从 infogmail.com 骗取的发件人名称“info”。 .我想添加一个自定义名称。我已经阅读了文档,但我还没有看到解决我的问题的方法。我看到的所有解决方案都是针对 python
const msg = {
to: email,
from: `${SENDER_EMAIL}`,
fromname: FROM_NAME,
subject: "Thanks for the Gift",
html: `${html(name, SENDER_EMAIL, SENDER_NAME)}`,
};
sgMail
.send(msg)
.then(() => {
console.log("Email sent");
})
.catch((error) => {
console.error(error);
});
};```
你可以这样:
sendgrid.send({
to: 'you@yourdomain.com',
from: {
email: 'example@example.com',
name: 'Sender Name'
},
subject: 'Hello World',
text: 'My first email through SendGrid'
});
下面的代码是我的 sendgrid 辅助函数 目前,这是从 infogmail.com 骗取的发件人名称“info”。 .我想添加一个自定义名称。我已经阅读了文档,但我还没有看到解决我的问题的方法。我看到的所有解决方案都是针对 python
const msg = {
to: email,
from: `${SENDER_EMAIL}`,
fromname: FROM_NAME,
subject: "Thanks for the Gift",
html: `${html(name, SENDER_EMAIL, SENDER_NAME)}`,
};
sgMail
.send(msg)
.then(() => {
console.log("Email sent");
})
.catch((error) => {
console.error(error);
});
};```
你可以这样:
sendgrid.send({
to: 'you@yourdomain.com',
from: {
email: 'example@example.com',
name: 'Sender Name'
},
subject: 'Hello World',
text: 'My first email through SendGrid'
});