Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

88
Views
Creating an express middleware to send emails

I've been trying to make an express middleware that sends an email using Nodemailer after the previous middleware finishes. I've come up with a few different designs, but ultimately each different version has it's drawback.

Ultimately, I would like the middleware to have a response from the previous middleware. If it is a success, then send a success email, otherwise, send an error email.

I came up with a dual design where one variation pushes to an error middleware, and a success leads to the next middleware. This contains some slight issues of sending multiple headers, specifically on an the second middleware erroring. I could say, if the mail errors out, do nothing. But that doesn't seem right. If anyone has any suggestions on a good design, that would be great.

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

From what you described, I would suggest not to create different middleware for that, but to just create one generic email function that would handle different type of messages. Then, just use that function in the first middleware and pass different parameters based on use case (success/error).

email-controller.js

const nodemailer = require('nodemailer');

const transporter = nodemailer.createTransport({
  host: process.env.EMAIL_HOST,
  port: process.env.EMAIL_PORT,
  secure: true,
  auth: {
    user: process.env.SMTP_USER,
    pass: process.env.SMTP_PASSWORD,
  },
});

exports.send_email_message = (send_to, subject, message) => {

  return new Promise((resolve, reject) => {

    const email_message = {
      from: { name: process.env.EMAIL_FRIENDLY_NAME },
      to: send_to,
      subject: subject,
      text: message
    };

    transporter.sendMail(email_message).then(() => {
      resolve(true);
    }).catch((error) => {
      reject(false);
    });

  })

}

custom-router.js

const { send_email_message } = require('./email-controller');
const express = require('express');
const router = express.Router();

router.get('/custom-middleware', async (req, res, next) => {
  try {
    // You can calculate "success" variable based on your custom logic
    if(success){
      await send_email_message('example@gmail.com', 'Success', 'This is body of success message.');
      return res.status(200).json({ success: true });
    } else {
      await send_email_message('example@gmail.com', 'Error', 'This is body of error message.');
      return res.status(400).json({ success: false });
    }
  } catch(error) {
    return res.status(400).json({ success: false });
  }
});

module.exports = router;
about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!