如何使用mailgun使用swift在ios应用程序上发送图像附件?

时间:2017-08-15 03:16:49

标签: iphone swift mailgun

我能够使用cocoapod发送带有正文的常规电子邮件 https://cocoapods.org/?q=mailgun 但有没有办法发送图像附件?

1 个答案:

答案 0 :(得分:2)

根据它的SDK(对于Swift而言,它很可能没有得到改进,并且依赖于AFNetworking是objc):

let message = MGMessage(from:"Excited User <someone@sample.org>",
                            to:"Jay Baird <jay.baird@rackspace.com>",
                            subject:"Mailgun is awesome!",
                            body:"Mailgun is great, here is a picture of a cat.")!
// someImage: UIImage
// type can be either .JPEGFileType or .PNGFileType
message.add(someImage, withName: "image01", type:.PNGFileType)


SwiftMailgun似乎更适合Swift,但它还处于早期阶段(查看TODO列表)。