Is there any library for NodeJS for sending mails with attachment?
With best regards, sdepold
|
Is there any library for NodeJS for sending mails with attachment? With best regards, sdepold |
||||
|
|
|
Yes, it is pretty simple, I use nodemailer (npm install nodemailer);
Then read a file and send an email :
|
|||
|
|
|
Personally i use Amazon SES rest API or Sendgrid rest API which is the most consistent way to do it. If you need a low level approach use https://github.com/Marak/node_mailer and set up your own smtp server (or one you have access too) |
||||
|
|
|
You may use nodejs-phpmailer |
|||
|
|
|
Did you try Nodemailer?
|
|||
|
|
|
Try with nodemailer, for example try this:
finally, send the message
|
|||
|
|
|
You can also use AwsSum's Amazon SES library: In there, there is an operation called SendEmail and SendRawEmail, the latter of which can send attachments via the service. |
|||||
|
|
i havent used it but nodemailer( |
|||
|
|