mailgun
mailgun copied to clipboard
📧 Service to assist with sending emails from Vapor apps
This PR is related to https://github.com/vapor-community/mailgun-kit/pull/1 and https://github.com/vapor/email/pull/2 Implementation is moved to a new repository `mailgun-kit` which is framework agnostic. Furthermore, this PR adds support for the generic email interface...
Email send do not working when pdf file attached to the Message..( Getting this response: {"error":true,"reason":"Nested multipart data is not supported"}
I am attaching image as suggested in docs, but get this error, what is wrong, how to do it differently? ```swift let bytes: [UInt8] = Array(buffer: body) var bytesBuffer =...
How I can add image in template in mailgun? I need to add my image to template in mailgun.
There's a missing key in the encoding of the blob for mailgun. I tested this fix and verified that it fixes the replyTo field.
Hi, Great library, works really well. The only issue I am having is using a Leaf template. The example code in the readme is generating an error in Xcode for...
Sending Leaf templates seems to be a common task for folks, so this PR makes that much easier. This is going to require a version bump and won't be tagged...
@twof Is there a plan to support vapor's email package? It seems we'd need to create an implementation for https://github.com/vapor/email/blob/master/Sources/Email/EmailClient.swift. By adding support for this, applications could easily switch email...
see https://github.com/vapor-community/VaporMailgunService/blob/78a756c0856debbbfb1962d7ff3ec29bca1edbc5/Sources/Mailgun/Models/IncomingMessage.swift#L26
Hello, you defined "attachment" as a string in IncomingMailgun I am trying to parse an email that has attachments but that doesn't work. I tried doing a custom parsing for...