aboutsummaryrefslogtreecommitdiffstats
path: root/tools/node_modules/nodemailer/lib/wellknown.js
diff options
context:
space:
mode:
Diffstat (limited to 'tools/node_modules/nodemailer/lib/wellknown.js')
-rw-r--r--tools/node_modules/nodemailer/lib/wellknown.js58
1 files changed, 58 insertions, 0 deletions
diff --git a/tools/node_modules/nodemailer/lib/wellknown.js b/tools/node_modules/nodemailer/lib/wellknown.js
new file mode 100644
index 0000000..72a4e62
--- /dev/null
+++ b/tools/node_modules/nodemailer/lib/wellknown.js
@@ -0,0 +1,58 @@
+/*
+ * This is a collection of well known SMTP service providers
+ */
+
+module.exports = {
+ "Gmail":{
+ host: "smtp.gmail.com",
+ secureConnection: true,
+ port: 465,
+ requiresAuth: true
+ },
+ "Yahoo":{
+ host: "smtp.mail.yahoo.com",
+ secureConnection: true,
+ port: 465,
+ requiresAuth: true
+ },
+ "Hotmail":{
+ host: "smtp.live.com",
+ port: 587,
+ requiresAuth: true
+ },
+ "hot.ee":{
+ host: "mail.hot.ee",
+ requiresAuth: true
+ },
+ "mail.ee":{
+ host: "smtp.mail.ee",
+ requiresAuth: true
+ },
+ "SES":{
+ host: "email-smtp.us-east-1.amazonaws.com",
+ secureConnection: true,
+ port: 465,
+ requiresAuth: true
+ },
+ "Zoho":{
+ host: "smtp.zoho.com",
+ secureConnection: true,
+ port: 465,
+ requiresAuth: true
+ },
+ "iCloud":{
+ host:"smtp.mail.me.com",
+ port: 587,
+ requiresAuth: true
+ },
+ "SendGrid":{
+ host: "smtp.sendgrid.net",
+ port: 587,
+ requiresAuth: true
+ },
+ "Postmark":{
+ host: "smtp.postmarkapp.com",
+ port: 25,
+ requiresAuth: true
+ }
+}; \ No newline at end of file