send-universal-notification-to-email
v0.1.6
Published
Command-line UniversalNotification to email forwarder
Downloads
86
Readme
send-universal-notification-to-email
Command-line UniversalNotification to email forwarder.
Install
npm install -g send-universal-notification-to-email
# or
yarn global add send-universal-notification-to-emailInstall from source
yarn install
yarn build
yarn global add "file:$(pwd)"Usage
send-universal-notification-to-email parses the text stream line by line from stdin.
echo '{ "message": "Hello World" }' | send-universal-notification-to-email \
--host 'smtp.example.com' \
--port '465' \
--secure \
--username 'username' \
--password 'password' \
--sender '[email protected]' \
--recipient '[email protected]' \
--recipient '[email protected]'