Mailgun
is a Vapor 3 service for a popular email sending API
Vapor Mailgun Service can be installed with Swift Package Manager
.package(url: "https://github.com/twof/VaporMailgunService.git", from: "0.4.0")
Sign up and set up a Mailgun account here
Make sure you get an API key and register a custom domain
In configure.swift
:
let mailgun = Mailgun(apiKey: "<api key>", domain: "mg.example.com")
services.register(mailgun, as: Mailgun.self)
In routes.swift
:
router.post("mail") { (req) -> Future<Response> in
let message = Mailgun.Message(
from: "postmaster@example.com",
to: "example@gmail.com",
subject: "Newsletter",
text: "This is a newsletter",
html: "<h1>This is a newsletter</h1>"
)
let mailgun = try req.make(Mailgun.self)
return try mailgun.send(message, on: req)
}