Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Any suggestion for smtp mail server in nodejs?

Tags:

node.js

smtp

I googled out quite a few but all are at best alpha versions, so it seems I will have to try an code one. Instead of coding one from scratch I would like to build on existing implementation, but a good one.

Any suggestions?

like image 575
AppleGrew Avatar asked Mar 29 '11 17:03

AppleGrew


People also ask

What SMTP server should I use?

Which port should you use for SMTP? Ports 25, 465, 587, or 2525 for SMTP have all been considered standard SMTP ports at some point, but only 587 or 2525 really should be considered for modern use.

What should I fill SMTP server?

An SMTP email server will have an address (or addresses) that can be set by the mail client or application that you are using and is generally formatted as smtp.serveraddress.com. For example, the SMTP server Gmail uses is smtp.gmail.com, and Twilio SendGrid's is smtp.sendgrid.com.


2 Answers

SMTP server - I've used Simple SMTP in conjunction with mailparser. IMHO, these are the best tools on the Internet for building SMTP servers in Node.js.

UPDATE: Simple SMTP has been deprecated. Use SMTP server instead (the successor of the Simple SMTP module).

like image 106
BMiner Avatar answered Sep 22 '22 21:09

BMiner


Haraka: https://github.com/baudehlo/Haraka

Is a full featured mail server in node.js - should do everything that you need.

like image 42
Matt Sergeant Avatar answered Sep 23 '22 21:09

Matt Sergeant