node-mail
node-mail copied to clipboard
This SMTP client library for Node.JS helps you send email safely and easily.
EventEmitter has variable named 'domain'. So, 'domain' in smtp.js is convert to 'domainName'
This fixes https://github.com/weaver/node-mail/issues/24
I add an error listener on the smtp socket to prevent ECONNREFUSED error and an option to set a smtp socket timeout.
when i use this library in windows. i tryed run the example ''client.js' , i get an error : typeError: Object has no method 'enter'
Seems that event emitters in node 0.8.8 have a domain member that conflicts with your usage of domain. There is a problem in events.js at line: events.js:80 this.domain.enter(); ^ TypeError:...
Totally a minor thing, but it would be really nice if npm packages had an obvious link back to the source repo. I had to search around to finally find...
Hi there! I couldn't send a mail by node-mail. Actually, i couldn't see the body of mail that is written by node-mail . Because the body of mail was written...
Can you please add the following keys to the package.json? ``` js { "homepage": "https://github.com/weaver/node-mail", "repository": { "type": "git", "url": "https://github.com/weaver/node-mail.git" }, "bugs": { "url": "https://github.com/weaver/node-mail/issues" } } ``` At...
Hi, I use node v0.4.8 and I have an error with this stack trace : node.js:134 throw e; // process.nextTick error, or 'error' event on first tick ^ Error: ECONNREFUSED,...