Browse Source

Changed the email message

rota3015 1 month ago
parent
commit
56f4c8f07c
1 changed files with 3 additions and 3 deletions
  1. 3 3
      controllers/emailController.js

+ 3 - 3
controllers/emailController.js

@@ -50,10 +50,10 @@ exports.validateOtp = async (req, res) => {
 
 function sendMail(otp, email, req) {
     const mailOptions = {
-        from: 'communityrule@medlab.host', // Replace with your email address
+        from: 'communityrule.app@medlab.host', // Replace with your email address
         to: email, // Replace with the recipient's email address
-        subject: 'Logging code for community rule',
-        text: 'Code for logging into commnunity rule is ' + otp,
+        subject: 'Login code for commnunityRule',
+        text: 'Login code for CommunityRule: ' + otp,
     };
     transporter.sendMail(mailOptions, (error, info) => {
         if (error) {