Created
May 19, 2021 20:28
-
-
Save ZulianTiger/e987644a61eab26784c347dda86dfc84 to your computer and use it in GitHub Desktop.
Nodemailer SMTP config for office365
This file contains hidden or 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
let transporter = nodemailer.createTransport({ | |
host: 'smtp.office365.com', | |
port: 'XXX', | |
secureConnection: true, | |
tls: { ciphers: 'SSLv3' }, | |
auth: { | |
user: '[email protected]', | |
pass: 'xxxxxxxx' | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment