Created
May 30, 2019 03:26
-
-
Save availit/d18c18c74ab0e042976885bba4579be0 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const transporter = nodemailer.createTransport({ | |
service: 'SendinBlue', // no need to set host or port etc. | |
auth: { | |
user: 'YOUR EMAIL', | |
pass: 'API KEY' | |
} | |
}); | |
// Read more on the usage of Nodemailer package here: https://nodemailer.com/usage/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment