An open API service indexing awesome lists of open source software.

https://github.com/ryzmdn/nodejs-mailer

nodemailer to send messages with a form from the sender's email to the recipient's email using nodejs
https://github.com/ryzmdn/nodejs-mailer

backend express expressjs form mail nodejs nodemailer

Last synced: 3 months ago
JSON representation

nodemailer to send messages with a form from the sender's email to the recipient's email using nodejs

Awesome Lists containing this project

README

          

# NodeJS Mailer

Nodemailer is a module for Node.js applications that allows easy email sending. The project started in 2010 when there were few reliable options for sending email messages, and today, it is the default solution for most Node.js users.

## How does it work?

Send the name, email, and message from the user email to another email address

## Installation

Clone this repository using the steps below.

```bash
# Clone repository
git clone https://github.com/ryzmdn/nodejs-mailer.git

# Change directory folder
cd nodejs-mailer

# Install Dependencies
npm install

# Open code editor
code .

# Run web server
node server.js
```

## Usage

Change the file name from ```.env.example``` to ```.env```, then you can see this variable:

```bash
PORT=
EMAIL_USER=
EMAIL_PASS=
EMAIL_TO=
```

## Support

For support, email **riybuzniz@gmail.com**.

## Feedback

If you have any feedback, please reach out to us at **riybuzniz@gmail.com**

## Source

- [NodeJS](https://nodejs.org/en)
- [ExpressJS](https://expressjs.com/)
- [Dotenv](https://www.dotenv.org/docs/)
- [Helmet](https://helmetjs.github.io/)
- [Nodemailer](https://nodemailer.com/)
- [Nodemon](https://nodemon.io/)