1.0.3 • Published 4 years ago

@surfingpikachu/email v1.0.3

Weekly downloads
-
License
ISC
Repository
-
Last release
4 years ago

email

a simple email client that uses nodemailer

const Email = require("@surfingpikachu/email")
const email = new Email({
    host: "smtp.gmail.com",
    port: 587,
    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

const email = new Email({})
  • host default is gmail smtp.gmail.com
  • post 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()

email.send({})
  • to address of recipient
  • subject subject of email
  • body body of email
1.0.3

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago