Express Smtp Mailer Save

A production-ready Node backend with an Express SMTP mail server configurable for use with contact forms, subscriptions, etc.

Project README

express-smtp-mailer


Status Usage Tooling Security Support
Build Status MIT license code style: prettier Known Vulnerabilities Maintained

ATTENTION: VERSION 2.0.0 HAS BEEN RELEASED. THIS IS A MAJOR SERMVER VERSIONING UPDATE AKA INCLUDES BREAKING CHANGES. PLEASE BE AWARE AND DON'T HESITATE TO REACH OUT IF YOU ARE EXPERIENCING NEGATIVE SIDE-EFFECTS FROM THE LATEST UPDATE.

VIEW PROJECT CHANGELOG

READ STEP-BY-STEP WALKTHROUGH

Installation

git clone this repository

cd express-smtp-mailer to enter root directory

npm install to acquire the node_modules

code . to open VS Code (or your favorite editor)

Configuration

create a new .env file in the root directory

use the process.env variables defined in the .env.example and ./routes/mailrouter.js files to setup authentication

for development and testing, create an Ethereal account and enter the credentials of the testing account (if desired)

process.env.SMTP_DEV_EMAIL=''

process.env.SMTP_DEV_PASSWORD=''

for production, you need to create a project on Google Cloud Platform, create an internal project, authorize the Gmail API, and then establish a connection with your Google account. You can authenticate using OAuth 2.0 via the Google API Playground, and once you perform the initial authentication and accept the request permissions, Nodemailer will take over and automatically renew your login so it doesn't actually expire in production.

		clientId: process.env.CLIENT_ID,
		clientSecret: process.env.CLIENT_SECRET,
		refreshToken: process.env.REFRESH_TOKEN,
		accessToken: process.env.ACCESS_TOKEN,

Testing

go back to the terminal and run npm run dev

it should print out the following lines

Node dev server: listening on port 5000

Ready to send mail!

verify full functionality by replacing './frontend/frontend.js' with your own API routes and linking them to the endpoints defined in ./routes/mailrouter.js and ./server.js

Success

and there you have it!

a deployment-ready express smtp mail server

Open Source Agenda is not affiliated with "Express Smtp Mailer" Project. README Source: killshot13/express-smtp-mailer

Open Source Agenda Badge

Open Source Agenda Rating