Skip to content

pavlo-shcherbukha/nodemailer

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SEND_EMAIL - тренинговый проект по NODE.JS по отрпавке email

Оригинальное описание

Оригинальный репозиторий с github

Some git help

some Node.js help

markdown-cheatsheet-online

github mastering-markdown

Change setting on ypur account

  1. enter in google account

pic1

  1. set up 2-step verification

pic2

  1. generate app password

pic2 this password will be used as a login

accessibility text

  1. correct your mail setting
      let transporter = nodeMailer.createTransport({
          host: 'smtp.googlemail.com',
          port: 465,
          secure: true,
          auth: {
              user: '[email protected]',
              pass: 'your app password'
      });
  1. correct your sender name
      let mailOptions = {
          from: '"your-sender name" <[email protected]>', // sender address
          to: req.body.to, // list of receivers
          subject: req.body.subject, // Subject line
          text: req.body.body, // plain text body
          html: '<b>NodeJS Email Tutorial</b>' // html body

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 43.7%
  • HTML 39.4%
  • Batchfile 16.9%