Better and fastest way to send emails to multiple recipients.
npm install -g @halfeld/send-it# Run this command in the same directory of `send-it.config.js`
send-itsend-it.config.js
module.exports = {
name: 'Your name',
email: 'hey@gmail.com', // SendIt get your Gravatar image
password: 'passwordOfEmailAbove',
subject: 'SendIt is Awesome!',
// Markdown is supported
emailText: `
# Hello World
This is a paragrapher with **strong** and _italic_ texts!
`,
recipients: [
'foo@example.com',
'bar@example.me'
]
}- Gmail (you need to enabled this)
- Hotmail
- Others

