1.0.6 • Published 2 years ago

smtp-sender v1.0.6

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

smtp-sender: GitHub npms.io (quality) npm npm bundle size

nodejs smtp client that bind the 25 port in localhost no smtp server needed.


supported envirements: aarch64-apple-darwin aarch64-pc-windows-msvc

x86_64-apple-darwin

usage:

yarn add smtp-sender or npm i smtp-sender

import { send } from 'smtp-sender'
send(
username: string,
timestamp: string, 
authtype: string, 
password: string, 
server: string, 
port: number, 
requireTls: boolean, 
from: string, 
to: string, 
replay: string, 
subject: string, 
body: string
): Promise<void>