Question

Y at-il Node.js modules pour Amazon Simple Email ?

Amazon Simple Email Service (Amazon SES) est une très évolutive et vrac rentable et transactionnel email-service d'envoi pour les entreprises et les développeurs.

Merci à l'avance!

Était-ce utile?

La solution

Ceci a été mentionné dans la liste de diffusion Node.js hier: https: // github.com/mrduncan/aws-lib/tree/ses-secure .

Autres conseils

Amazon a un SDK officiel pour AWS Node.js .

Vous pouvez l'installer en faisant

npm install aws-sdk

.

Spécifiquement pour SES sur le nœud que vous pouvez utiliser ceci:

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

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top