Giter VIP home page Giter VIP logo

anton-bot / nodejsemailsending Goto Github PK

View Code? Open in Web Editor NEW

This project forked from hspharwinder/nodejsemailsending

0.0 1.0 0.0 2 KB

var sendEmail = async (data) =>{ // Generate test SMTP service account from ethereal.email // Only needed if you don't have a real mail account for testing let testAccount = await nodemailer.createTestAccount(); // create reusable transporter object using the default SMTP transport let transporter = nodemailer.createTransport({ // Start :: uncomment this for testing /* host: 'smtp.ethereal.email', port: 587, secure: false, // true for 465, false for other ports */ // End :: uncomment this for testing service: "Gmail", // comment this for test auth: { user: '[email protected]', // generated ethereal user pass: process.env.PASSWORD // generated ethereal password } }); messageBody = '<h2>There is details of created new artist </h2>' + '<br>Name ::: ' + data.Name + '<br>Email ::: ' + data.Email + '<br>Phone No. ::: ' + data.MobileNo + '<br>Description ::: ' + data.Description; // send mail with defined transport object let info = await transporter.sendMail({ from: '<[email protected]>', // sender address to: '[email protected], [email protected]', // list of receivers subject: 'New Artist Created โœ”', // Subject line text: 'Detail of New Artist Created', // plain text body html: messageBody,// html body }); console.log('Message sent: %s', info.messageId); // Message sent: <[email protected]> // Preview only available when sending through an Ethereal account console.log('Preview URL: %s', nodemailer.getTestMessageUrl(info)); // Preview URL: https://ethereal.email/message/WaQKMgKddxQDoou... }

nodejsemailsending's People

Contributors

hspharwinder avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.