https://github.com/reaganm02/nuxt3-email-template-nodemailer-handlebars
Nuxt 3: send emails and create a customizable email templates using the popular modules nodemailer and handlebars.
https://github.com/reaganm02/nuxt3-email-template-nodemailer-handlebars
email-template emails formkit handlebars-template nodemailer nuxt nuxt3 nuxtjs typescript vue3
Last synced: 4 months ago
JSON representation
Nuxt 3: send emails and create a customizable email templates using the popular modules nodemailer and handlebars.
- Host: GitHub
- URL: https://github.com/reaganm02/nuxt3-email-template-nodemailer-handlebars
- Owner: ReaganM02
- Created: 2023-05-02T13:17:16.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2023-05-02T14:03:25.000Z (about 2 years ago)
- Last Synced: 2024-11-13T17:33:55.873Z (6 months ago)
- Topics: email-template, emails, formkit, handlebars-template, nodemailer, nuxt, nuxt3, nuxtjs, typescript, vue3
- Language: TypeScript
- Homepage:
- Size: 854 KB
- Stars: 13
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Send email using Nodemailer and Handlebars modules
Create a customizable email template using the Handlebars module and send emails using the Nodemailer module. In this example, I am using Gmail as my transporter, but you can use any transporter of your choice.[](https://res.cloudinary.com/dg1sh76js/video/upload/v1683035905/Screen_Recording_2023-05-02_at_9.11.31_PM_ekkdk8.mov)
## Setup
Make sure to install the dependencies:
```bash
# yarn
yarn install# npm
npm install# pnpm
pnpm install
```## Development Server
Start the development server on `http://localhost:3000`
```bash
npm run dev
```## Production
Build the application for production:
```bash
npm run build
```Locally preview production build:
```bash
npm run preview
```Check out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information.