Эх сурвалжийг харах

Added email configuration file

rota3015 7 сар өмнө
parent
commit
513cf89e3a
1 өөрчлөгдсөн 13 нэмэгдсэн , 0 устгасан
  1. 13 0
      config/email.config

+ 13 - 0
config/email.config

@@ -0,0 +1,13 @@
+const nodemailer = require('nodemailer');
+
+const transporter = nodemailer.createTransport({
+  host: process.env.CLOUDRON_MAIL_SMTP_SERVER, // Replace with your email server host
+  port: process.env.CLOUDRON_MAIL_SMTP_PORT, // Replace with your email server port
+  secure: false, // false for non-SSL, true for SSL/TLS
+  auth: {
+    user: process.env.CLOUDRON_MAIL_SMTP_USERNAME, // Replace with your email username
+    pass: process.env.CLOUDRON_MAIL_SMTP_PASSWORD // Replace with your email password
+  },
+});
+
+module.exports = transporter;