Archive. Date of access: 12 Jan 2022
Marak Squires 9309ac3493 [api] connection pooling per server and port seems to be working now. | 14 rokov pred | |
---|---|---|
lib | 14 rokov pred | |
test | 14 rokov pred | |
MIT-LICENSE | 14 rokov pred | |
Readme.md | 14 rokov pred | |
demo.js | 14 rokov pred | |
package.json | 14 rokov pred |
#v0.2.0
###send emails from node.js to your smtp server, simple as cake.
curl http://npmjs.org/install.sh | sh
npm install mailer
var email = require("mailer");
email.send({
host : "localhost", // smtp server hostname
port : "25", // smtp server port
domain : "localhost", // domain used by client to identify itself to server
authentication : "login", // auth login is supported; anything else is no auth
username : "dXNlcm5hbWU=", // Base64 encoded username
password : "cGFzc3dvcmQ=", // Base64 encoded password
to : "marak.squires@gmail.com",
from : "obama@whitehouse.gov",
subject : "node_mailer test email",
body : "hello this is a test email from the node_mailer"
});