How to attach file to an email with nodemailer

前端 未结 8 2130
南笙
南笙 2020-12-04 19:49

I have code that send email with nodemailer in nodejs but I want to attach file to an email but I can\'t find way to do that I search on ne

8条回答
  •  一个人的身影
    2020-12-04 20:26

    The alternative solution is to host your images online using a CDN and link to the online image source in your HTML, eg. .

    (I had problems with nodemailer's image embedding using nodemailer version 2.6.0, which is why I figured out this workaround.)

    An added benefit of this solution is that you're sending no attachments to nodemailer, so the sending process is more streamlined.

提交回复
热议问题