I've been using mailgun for a solution that I provide for a little bit. I'd like to start using their API instead of just SMTP, but I'm having some trouble figuring out the correct place for each of the settings. Has anyone successfully utilized mailgun with VisualCron?
Here are the examples they provide for sending via cURL:
curl -s --user 'api:YOUR_API_KEY' \
https://api.mailgun.net/...OUR_DOMAIN_NAME/messages \
-F from='Excited User <mailgun@YOUR_DOMAIN_NAME>' \
-F to=YOU@YOUR_DOMAIN_NAME \
-F to=bar@example.com \
-F subject='Hello' \
-F text='Testing some Mailgun awesomness!'