Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tanepiper/node-simplesmtp
ABANDONED - A real simple SMTP client for node.js, handy for debugging
https://github.com/tanepiper/node-simplesmtp
Last synced: 9 days ago
JSON representation
ABANDONED - A real simple SMTP client for node.js, handy for debugging
- Host: GitHub
- URL: https://github.com/tanepiper/node-simplesmtp
- Owner: tanepiper
- Created: 2010-08-26T14:09:42.000Z (about 14 years ago)
- Default Branch: master
- Last Pushed: 2015-03-17T11:53:28.000Z (over 9 years ago)
- Last Synced: 2024-10-11T12:51:55.794Z (about 1 month ago)
- Language: JavaScript
- Homepage:
- Size: 129 KB
- Stars: 1
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### THIS MODULE IS NOW ABANDONED AND UNPUBLISHED FROM NPM. It is kept here for archive purposes only.
If you want a simple SMTP/Mail client module for nodejs, check out node-pony (https://github.com/substack/node-pony) instead.
Real Simple NodeJS SMTP
This module provides a real simple SMTP client. It provides no error checking or
callbacks, it just lets you provide connection settings to a client handler which you
can then use throughout your own module.
Handy for debuggingSome code based on node_mailer by Marak Squires - http://github.com/marak/node_mailer
### Install
git clone http://github.com/tanepiper/node-simplesmtp.git
cd node-simplesmtp
npm install .Useage:
-------
```
var simplesmtp = require('simplesmtp');
var mailClient = simplesmtp.createClient(host, username, password [,port, domain, authentication, encoding]);
mailClient.sendMail(to, from, subject, body)
```