문제

Are there any Node.js modules for Amazon Simple Email Service?

Amazon Simple Email Service (Amazon SES) is a highly scalable and cost-effective bulk and transactional email-sending service for businesses and developers.

Thanks in advance!

도움이 되었습니까?

해결책

This was mentioned in the node.js mailing list yesterday: https://github.com/mrduncan/aws-lib/tree/ses-secure.

다른 팁

Amazon has an official AWS SDK for Node.js.

You can install it by doing

npm install aws-sdk

See documentation here.

Specifically for SES on node you can use this:

https://github.com/jjenkins/node-amazon-ses

Another option is to set up an SMTP endpoint.

This way, you can use any SMTP library, like emailjs, and things will route through Amazon SES: http://aws.amazon.com/ses/faqs/

Q: Does Amazon SES provide an SMTP endpoint?

Yes. Amazon SES provides a full-featured SMTP interface for seamless integration with applications that can send email via SMTP. You can connect directly to this SMTP interface from your applications, or configure your existing email server to use this interface as an SMTP relay.

To connect to the Amazon SES SMTP interface, you must create SMTP credentials. To create your credentials, go to the Amazon SES console and click the SMTP link.

You can also use AwsSum which has implemented many of the Amazon Web Services, as well as others:

AwsSum also helps you along a little but more than those other modules but it's worth trying them all to see which one you like. :)

(Disclaimer: I'm the author of AwsSum so I'm biased.)

Yes there is aws-sdk and node-ses are one of the best module to send email using SES.

NPM AWS-SDK https://www.npmjs.com/package/aws-sdk

AWS-SES-MAIL https://www.npmjs.com/package/aws-ses-mail

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top