0.10.0 • Published 6 years ago

mailgun-sendhtml v0.10.0

Weekly downloads
5
License
MIT
Repository
github
Last release
6 years ago

Send emails with mailgun

A simple repo to simplify sending test emails with a Mailgun account.

Setup

The library needs two config files to run:

Mailgun credentials

This JSON file is stored globally in your home directory so that all new projects have access to it. Save this to

~/.mailgun

{
  "privateApi": "your private API key",
  "publicApi": "your public API key",
  "domainName": "your domain"
}

Config file

This file stores the path to you html emails and sender/recipient data.

./mailgunrc.json

{
  "to": ["to@example.com"],
  "from": "from@example.com",
  "paths": ["path to html file"]
}