GustavoVergara / SwiftMailgun

SwiftMailgun provides simple alternative when you need to send an email with your iOS app using MailGun

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

SwiftMailgun

Cocoapods Compatible GitHub license Swift 3

SwiftMailgun provides simple alternative when you need to send an email with your iOS app using MailGun.

โ“ Why?

Sometimes, there is the need to setup a simple email form in your iOS app, or to trigger an email after an action without having to setup your own service for that, sometimes you don't want to use the MailComposeViewController or use a SMTP library. This provide a simple alternative when you need to send an email with your iOS app.

๐Ÿ“ง Mailgun

Mailgun provides a simple reliable API for transactional emails. You will need to have an ApiKey and an account to use the client.

:octocat: Installation

Get SwiftMailgun on CocoaPods, just add pod 'SwiftMailgun' to your Podfile.

๐ŸŽ“ Usage

Usage is very simple

import SwiftMailgun

let mailgun = MailgunAPI(apiKey: "YouAPIKey", clientDomain: "yourDomain.com")

mailgun.sendEmail(to: "to@test.com", from: "Test User <test@test.com>", subject: "This is a test", bodyHTML: "<b>test<b>") { mailgunResult in

  if mailgunResult.success{
    print("Email was sent")
  }

}

๐Ÿ”ง TODO

  • Multiple recipients
  • Add attachments
  • Add other API settings like tracking, tags, etc
  • Carthage support

โœŒ๏ธ License

MIT

๐Ÿ‘ฝ Author

Chris Jimenez - http://chrisjimenez.net, @chrisjimeneznat

๐Ÿบ Donate

If you want to buy me a beer, you can donate to my coin addresses below:

BTC

1BeGBew4CBdLgUSmvoyiU1LrM99GpkXgkj

ETH

0xa59a3793E3Cb5f3B1AdE6887783D225EDf67192d

LTC

Ld6FB3Tqjf6B8iz9Gn9sMr7BnowAjSUXaV

About

SwiftMailgun provides simple alternative when you need to send an email with your iOS app using MailGun

License:MIT License


Languages

Language:Swift 63.2%Language:Ruby 34.2%Language:Objective-C 2.6%