Problem
I would like to use the MailGun service to send emails from a pure Swift app.
Research So Far
As I understa
requests.post sends an HTTP POST request, encoding key/value pairs as application/x-www-form-urlencoded
. You need to do the same.
application/x-www-form-urlencoded
as per How to escape the HTTP params in Swift