使用Apple Mail应用程序以外的外部应用程序发送电子邮件

问题描述 投票:1回答:2

有没有办法发送电子邮件并由设备上的所有应用程序处理它可以这样做?比如GMail,Yahoo,Outlook,还是需要使用每个自己的库来实现这样的功能?

是否存在某种通用URL或方案,我可以使用它来提供设备上所有可用电子邮件客户端的选择?

目前,为了编写电子邮件,我使用MFMailComposeViewController,但如果用户没有使用Mail应用程序设置帐户,则该功能不起作用,许多人没有。

ios objective-c email mfmailcomposeviewcontroller mfmailcomposer
2个回答
1
投票

几个月前我遇到了完全相同的问题(特别是在从模拟器进行测试时,因为它没有设置邮件帐户,因此发生了崩溃)。您需要在MFMailComposeViewControllerDelegate中验证此流程

let recipient = "[email protected]"
if MFMailComposeViewController.canSendMail() {
    // Do your thing with native mail support
} else { // Otherwise, 3rd party to the rescue
    guard let urlEMail = URL(string: "mailto:\(recipient)") else { 
        print("Invalid URL Scheme")
        return 
    }
    if UIApplication.shared.canOpenURL(urlEMail) {
        UIApplication.shared.open(urlEMail, options: [:], completionHandler: {
            _ in
        })
    } else {
        print("Ups, no way for an email to be sent was found.")
    }
}

上面有很多过验证,但这是出于调试原因。如果您完全确定该电子邮件地址(例如前一个正则表达式匹配),那么,无论如何,只需强制解包;否则,这将保证您的代码安全。

希望能帮助到你!


0
投票

有一个很好的ThirdPartyMailer库,可以处理所有第三方网址。您需要在set文件中为邮件客户端使用LSApplicationQueriesSchemes Info.plist

这是一个支持默认邮件应用程序和第三方客户端的实现:

let supportMail = "[email protected]"
let subject = "App feedback"
guard MFMailComposeViewController.canSendMail() else {
    var client : ThirdPartyMailClient?
    for c in ThirdPartyMailClient.clients() {
        if ThirdPartyMailer.application(UIApplication.shared, isMailClientAvailable: c) {
            client = c
            break
        }
    }

    guard client != nil else {
        self.showError("Please contact us via \(supportMail)")
        return
    }

    ThirdPartyMailer.application(
        UIApplication.shared,
        openMailClient: client!,
        recipient: supportMail,
        subject: subject,
        body: nil
    )

    return
}

// set up MFMailComposeViewController
mailVC = MFMailComposeViewController()
mailVC.mailComposeDelegate = vc
mailVC.setToRecipients([supportMail])
mailVC.setSubject(subject)
© www.soinside.com 2019 - 2024. All rights reserved.