oplus.smtp
v1.0.2-pre
Published
Send SMTP messages easily
Readme
oplus.smtp
Send SMTP easily!
Installation :
npm i oplus.smtpUsage :
const smtp = require("oplus.smtp");
smtp.sender({
host: "Host adress",
port: "Host port",
authUser: "Host username",
authPass: "Host password",
fromName: "Mail from name",
fromMail: "Mail from adress",
toMail: "Mail to adress",
subject: "Mail subject",
text: "Mail text",
html: "Mail html"
})