【发布时间】:2020-12-21 06:00:09
【问题描述】:
我正在尝试通过 AWS SES 服务发送忘记密码的邮件。我做了这个模板
{
"Template":{
"TemplateName": "forgotpasswrd",
"SubjectPart": "Forgot password ",
"TextPart":"Text area",
"HtmlPart":"<p>We heard that you lost your password. Sorry about that!<\/p>\r\n <p>But don\u2019t worry! You can use the following link to reset your password:<\/p>\r\n <a href=${url}>${url}<\/a>\r\n <p>If you don\u2019t use this link within 1 hour, it will expire.<\/p>\r\n "
}
}
这是我在 nodejs 中输入密码重置链接的代码。
const params = {};
const destination = {
ToAddresses: [String(email)],
};
const templateData = {};
templateData.url = String(Url);
params.Source = 'myemailid@gmail.com';
params.Destination = destination;
params.Template = 'forgotpassword';
params.TemplateData = JSON.stringify(templateData);
Url 是我要发送的内容。
但是当我收到邮件时,它不显示链接,而只显示 html 文本
" 不过别担心!您可以使用以下链接重设密码:
${网址} 如果您在 1 小时内不使用此链接,它将过期。”
如何在邮件中发送链接?
【问题讨论】:
标签: javascript node.js amazon-web-services express amazon-ses