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
- Host: GitHub
- URL: https://github.com/ryzmdn/nodejs-mailer
- Owner: ryzmdn
- Created: 2024-11-08T12:51:01.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-08T12:52:03.000Z (over 1 year ago)
- Last Synced: 2025-04-15T01:46:15.886Z (about 1 year ago)
- Topics: backend, express, expressjs, form, mail, nodejs, nodemailer
- Language: JavaScript
- Homepage:
- Size: 11.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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/)