如何使用 node js 和 express 发送带有电子邮件的链接

问题描述

我无法通过电子邮件发送可点击的链接。这是我的代码

const data = {
  from: "me@samples.mailgun.org",to: email,subject: "password reset",html: `
  <h1>hey,we received you have to reset your account password,${currentDate} </h1>
  <h1> Please click on the link to reset your password </h1>\
  <a href=${process.env.CLIENT_URL}/resetpassword/${token}> click here </a>

  `,};

邮件已成功发送至邮箱,但链接无法点击 看起来像

enter image description here

解决方法

我猜您必须为 " 属性添加 href

<a href="${process.env.CLIENT_URL}/resetpassword/${token}"> click here </a>