我尝试通过SendGrid直接以HTML格式发送一个可行的。但是,它在电子邮件中以简单的HTML格式返回
我的代码:
const message = {
to: email,
from: {
email: "christianguimaraes1996@gmail.com",
},
subject: "Forgot Password",
text: "TOKEN",
token: token,
html: "<p> token: {{{token}}}} </p>",
}
sgMail.send(message)
return res.send()
在电子邮件中是这样收到的:
token: {{{token}}}}
2条答案
按热度按时间e1xvtsh31#
像这样试试,
注意:在动态模板中,它必须像
Ex: Hello {{token}}
这样content
中的key value
应该与您的template value expression
匹配。06odsfpq2#
试试这个