gpt4 book ai didi

javascript - 如何将变量传递给nodemailer中的html页面?

转载 作者:行者123 更新时间:2023-11-29 17:43:52 25 4
gpt4 key购买 nike

我想发送一封带有 html 模板的电子邮件。在该模板中,我想在发送电子邮件时添加一些动态数据。

就像我的 html 页面只有一个链接,但我想在链接中添加一个 id。

是否可以在发送邮件时在html数据中添加动态数据,如果可以,请帮我找出解决办法。

最佳答案

是的,只需在发送电子邮件之前为 html 构建字符串。

var name = "John";
var link = "http://www.example.com/id="+1;
mailOptions = {
...
html: '<a href="'+ link +'">'+name+'</a>'
};

关于javascript - 如何将变量传递给nodemailer中的html页面?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51496936/

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