@ryanforever/email

1.0.6 • Public • Published

email

a simple email client that uses nodemailer

const Email = require("@ryanforever/email")
const email = new Email({
    username: "johnsmith@gmail.com",
    password: "1234abcd",
    name: "John Smith",
    email: "johnsmith@gmail.com",
})

email.send({
    to: "drakefan69@yahoo.com",
    subject: "Hello",
    body: "I love you"
})

config

// setup
const email = new Email({
    host,       // default is gmail "smtp.gmail.com"
    port,       // default is 587
    username,   // your email username
    password,   // your email password
    name,       // how you want your name to appear
    email       // address emails will be sent from
})

// send an email
email.send({
    to,         // address of recipient
    subject,    // subject of email
    body        // body/text of email
})

Readme

Keywords

none

Package Sidebar

Install

npm i @ryanforever/email

Weekly Downloads

0

Version

1.0.6

License

ISC

Unpacked Size

2.57 kB

Total Files

5

Last publish

Collaborators

  • ryanforever