如何在nodeJS中加载图像



我刚开始使用NodeJs,所以我不知道如何在NodeJs中显示图像。我已经参考了我的所有代码和我面临的问题。

exports.sendWelcomeEmail = functions.auth.user().onCreate((user) => {
  const email = user.email; // The email of the user.
  const displayName = user.displayName;  //The name of user 
  const image = user.photoURL;   // The image url of user
  // [END eventAttributes]
  return sendWelcomeEmail(email, displayName, image);
});
function sendWelcomeEmail(email, displayName , image) {
  const mailOptions = {
    from: `${APP_NAME} <noreply@firebase.com>`,
    to: email,
  };

mailOptions.subject = `Welcome to ${APP_NAME}!`;

    mailOptions.html = `
Hey ${name || ''}! Welcome to ${APP_NAME}.  
<br />
<img src="image">
<br/>
We hope you will enjoy our service. <br/> `;
  return mailTransport.sendMail(mailOptions).then(() => {
    return console.log('New welcome email sent to:', email);
  });
}

这里图像没有显示在 html 中,所以我如何在下面的代码中传递包含图像 url 的图像变量

<img src="image">

电子邮件可以是文本,也可以包含 HTML。网页由相同的 HTML,可以包含使用 <img src="{url here}"> 标记的图像。因此,您应该在电子邮件中使用该标签,而不仅仅是输出图像URL。(您可能还需要将电子邮件的Content-type标题设置为 text/html 以使其正确显示。

您必须将图像定义为:(未测试)

const image = <img src=${user.photoURL}/>

相关内容

  • 没有找到相关文章

最新更新