0.1.6 • Published 4 months ago
devmail-server v0.1.6
DevMail Server
A simple smtp server for development purposes.
Installation
npm install -g devmail-server
Usage
npx devmail-server
Configuration
You can pass the following options to configure the SMTP server:
--smtp-host
: SMTP host server. (default: '0.0.0.0')--smtp-port
: SMTP port server. (default: 587)--host
,-h
: Web server host. (default: '0.0.0.0')--port
,-p
: Web server port. (default: 3000)
Example:
npx devmail-server --smtp-host "127.0.0.1" --smtp-port 2525 -p 8080