Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Amazon SES vs Node Mailer

With nodemailer npm, I am able to send email notifications. Found Amazon SES, another transport facility for email notifications. I can push messages using nodemailer and SMTP or can use AWS-SES as transport facility. In both the cases, I am pushing messages from my system.What is advantage of using Amazon SES over nodemailer.

like image 998
codewarrior Avatar asked Jun 20 '26 12:06

codewarrior


1 Answers

NodeMailer is a utility by using which you can send email but they will not provide the email facility itself.

but AWS SES is a service(SMTP) by which you can send the emails.

You can use Nodemailer with AWS SES.

like image 97
Vishnu Mishra Avatar answered Jun 22 '26 07:06

Vishnu Mishra