├── .gitignore ├── .vscode └── settings.json ├── README.md ├── sendAttachment ├── .env-example ├── .gitignore ├── README.md ├── images │ └── profile.JPG ├── package-lock.json ├── package.json └── server.js ├── sendEmailWithGmail ├── .env-example ├── .gitignore ├── README.md ├── package-lock.json ├── package.json └── server.js ├── sendEmailWithMailGun ├── .env-example ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── public │ └── images │ │ └── apiKey_and_domain.png └── server.js ├── sendFormEmail ├── .env-example ├── .gitignore ├── README.md ├── mail.js ├── package-lock.json ├── package.json ├── public │ └── images │ │ └── apiKey_and_domain.png ├── server.js └── views │ ├── emailMessage.html │ ├── error.html │ └── index.html └── sendTemplates ├── .env-example ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── server.js └── views └── index.handlebars /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accimeesterlin/nodemailer-examples/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accimeesterlin/nodemailer-examples/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accimeesterlin/nodemailer-examples/HEAD/README.md -------------------------------------------------------------------------------- /sendAttachment/.env-example: -------------------------------------------------------------------------------- 1 | PASSWORD=abc@gmail.com 2 | EMAIL=1234 -------------------------------------------------------------------------------- /sendAttachment/.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | node_modules -------------------------------------------------------------------------------- /sendAttachment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accimeesterlin/nodemailer-examples/HEAD/sendAttachment/README.md -------------------------------------------------------------------------------- /sendAttachment/images/profile.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accimeesterlin/nodemailer-examples/HEAD/sendAttachment/images/profile.JPG -------------------------------------------------------------------------------- /sendAttachment/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accimeesterlin/nodemailer-examples/HEAD/sendAttachment/package-lock.json -------------------------------------------------------------------------------- /sendAttachment/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accimeesterlin/nodemailer-examples/HEAD/sendAttachment/package.json -------------------------------------------------------------------------------- /sendAttachment/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accimeesterlin/nodemailer-examples/HEAD/sendAttachment/server.js -------------------------------------------------------------------------------- /sendEmailWithGmail/.env-example: -------------------------------------------------------------------------------- 1 | PASSWORD=abc@gmail.com 2 | EMAIL=1234 -------------------------------------------------------------------------------- /sendEmailWithGmail/.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | node_modules -------------------------------------------------------------------------------- /sendEmailWithGmail/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accimeesterlin/nodemailer-examples/HEAD/sendEmailWithGmail/README.md -------------------------------------------------------------------------------- /sendEmailWithGmail/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accimeesterlin/nodemailer-examples/HEAD/sendEmailWithGmail/package-lock.json -------------------------------------------------------------------------------- /sendEmailWithGmail/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accimeesterlin/nodemailer-examples/HEAD/sendEmailWithGmail/package.json -------------------------------------------------------------------------------- /sendEmailWithGmail/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accimeesterlin/nodemailer-examples/HEAD/sendEmailWithGmail/server.js -------------------------------------------------------------------------------- /sendEmailWithMailGun/.env-example: -------------------------------------------------------------------------------- 1 | API_KEY= 2 | DOMAIN= -------------------------------------------------------------------------------- /sendEmailWithMailGun/.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | node_modules -------------------------------------------------------------------------------- /sendEmailWithMailGun/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accimeesterlin/nodemailer-examples/HEAD/sendEmailWithMailGun/README.md -------------------------------------------------------------------------------- /sendEmailWithMailGun/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accimeesterlin/nodemailer-examples/HEAD/sendEmailWithMailGun/package-lock.json -------------------------------------------------------------------------------- /sendEmailWithMailGun/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accimeesterlin/nodemailer-examples/HEAD/sendEmailWithMailGun/package.json -------------------------------------------------------------------------------- /sendEmailWithMailGun/public/images/apiKey_and_domain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accimeesterlin/nodemailer-examples/HEAD/sendEmailWithMailGun/public/images/apiKey_and_domain.png -------------------------------------------------------------------------------- /sendEmailWithMailGun/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accimeesterlin/nodemailer-examples/HEAD/sendEmailWithMailGun/server.js -------------------------------------------------------------------------------- /sendFormEmail/.env-example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accimeesterlin/nodemailer-examples/HEAD/sendFormEmail/.env-example -------------------------------------------------------------------------------- /sendFormEmail/.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | node_modules -------------------------------------------------------------------------------- /sendFormEmail/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accimeesterlin/nodemailer-examples/HEAD/sendFormEmail/README.md -------------------------------------------------------------------------------- /sendFormEmail/mail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accimeesterlin/nodemailer-examples/HEAD/sendFormEmail/mail.js -------------------------------------------------------------------------------- /sendFormEmail/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accimeesterlin/nodemailer-examples/HEAD/sendFormEmail/package-lock.json -------------------------------------------------------------------------------- /sendFormEmail/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accimeesterlin/nodemailer-examples/HEAD/sendFormEmail/package.json -------------------------------------------------------------------------------- /sendFormEmail/public/images/apiKey_and_domain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accimeesterlin/nodemailer-examples/HEAD/sendFormEmail/public/images/apiKey_and_domain.png -------------------------------------------------------------------------------- /sendFormEmail/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accimeesterlin/nodemailer-examples/HEAD/sendFormEmail/server.js -------------------------------------------------------------------------------- /sendFormEmail/views/emailMessage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accimeesterlin/nodemailer-examples/HEAD/sendFormEmail/views/emailMessage.html -------------------------------------------------------------------------------- /sendFormEmail/views/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accimeesterlin/nodemailer-examples/HEAD/sendFormEmail/views/error.html -------------------------------------------------------------------------------- /sendFormEmail/views/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accimeesterlin/nodemailer-examples/HEAD/sendFormEmail/views/index.html -------------------------------------------------------------------------------- /sendTemplates/.env-example: -------------------------------------------------------------------------------- 1 | PASSWORD=abc@gmail.com 2 | EMAIL=1234 -------------------------------------------------------------------------------- /sendTemplates/.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | node_modules -------------------------------------------------------------------------------- /sendTemplates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accimeesterlin/nodemailer-examples/HEAD/sendTemplates/README.md -------------------------------------------------------------------------------- /sendTemplates/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accimeesterlin/nodemailer-examples/HEAD/sendTemplates/package-lock.json -------------------------------------------------------------------------------- /sendTemplates/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accimeesterlin/nodemailer-examples/HEAD/sendTemplates/package.json -------------------------------------------------------------------------------- /sendTemplates/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accimeesterlin/nodemailer-examples/HEAD/sendTemplates/server.js -------------------------------------------------------------------------------- /sendTemplates/views/index.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accimeesterlin/nodemailer-examples/HEAD/sendTemplates/views/index.handlebars --------------------------------------------------------------------------------