ios - 应用程序运行时在后台使用 SMTP Mailcore2 发送邮件

标签 ios swift asynchronous background-process mailcore2

我正在编写一个 iOS 应用程序,需要在用户添加新数据(条形码扫描仪、扫描代码)后在后台发送定期更新。我找不到任何方法可以在没有问题和限制的情况下通过 SMTP 和 mailcore2 在后台发送邮件。

我已经尝试过:

  1. 尝试使用后台获取 https://developer.apple.com/documentation/uikit/core_app/managing_your_app_s_life_cycle/preparing_your_app_to_run_in_the_background/updating_your_app_with_background_app_refresh 但这是非常不规律的,需要一些时间才能触发。

  2. 在 AppDelegate.swift 中:

func applicationDidEnterBackground(_ application: UIApplication) {
        BackgroundTask.run(application: application) { [...] }
}

但是只有当我关闭/最小化应用程序时才会发送数据,并且如果后台任务未完成,应用程序将卡住,并且我收到此错误:XPC 连接中断 我还遇到了问题,因为我需要等待 sendOperation 返回,但由于这是异步的,我构建了一个解决方法来保持线程运行并随后处理我的“if success else ...”。完整代码中的更多内容:

typealias CompletionHandler = (Error?) -> Void

/// Provides syncronous access to results returned by
/// asynchronous processes with completion handlers
class SyncMaker {
    var result: Error? = nil

    /// Generates a synchronous-compliant completion handler
    func completion() -> CompletionHandler{
        return {
            (error: Error?) in

            // Store result, return control
            self.result = error
            CFRunLoopStop(CFRunLoopGetCurrent())
        }
    }

    // Perform task (that must use custom completion handler) and wait
    func run(_ task: @escaping () -> Void) -> Error? {
        task()
        CFRunLoopRun()
        return result
    }
}

func applicationDidEnterBackground(_ application: UIApplication) {
        BackgroundTask.run(application: application) { backgroundTask in
            if (scanManager.hasDataToSend()) {
                let smtpSession = MCOSMTPSession()
                let settings: Settings = scanManager.getSettings()
                smtpSession.hostname = settings.credMailServer
                smtpSession.username = settings.credMailSource
                print(settings.credMailSource)
                smtpSession.password = settings.credMailPassword
                smtpSession.port = UInt32(settings.credMailPort)
                […] Setting auth and connection typ
                smtpSession.isCheckCertificateEnabled = false
                smtpSession.timeout = 100
                smtpSession.connectionLogger = {(connectionID, type, data) in
                    if data != nil {
                        if let string = NSString(data: data!, encoding: String.Encoding.utf8.rawValue){
                            NSLog("Connectionlogger: \(string)")
                        }
                    }
                }

                let builder = MCOMessageBuilder()
                builder.header.to = [MCOAddress(displayName: settings.credMailDest, mailbox: settings.credMailDest)!]
                builder.header.from = MCOAddress(displayName: settings.credMailSource, mailbox: settings.credMailSource)
                builder.header.subject = "ScanLMS"
                builder.htmlBody = ""

                guard let attachment = MCOAttachment(data: scanManager.getSendData().data(using: .ascii), filename: "scans.txt") else {
                    print("Cant init attachment!")
                    backgroundTask.end()
                    return
                }
                attachment.mimeType =  "text/plain"
                builder.addAttachment(attachment)

                let rfc822Data = builder.data()
                let sendOperation = smtpSession.sendOperation(with: rfc822Data!)
                var sendingError: Bool = true

                print("Trying to send mail...")
                if (sendOperation != nil) {
                    print("Starting sendOperation...")
                    let syncMaker = SyncMaker() //full class on top of code
                    let result = syncMaker.run {
                        sendOperation?.start(
                            syncMaker.completion())
                    }
                    if (result != nil) {
                        print("Error sending email: \(result!)")
                    } else {
                        sendingError = false
                        print("Successfully sent email!")
                    }
                } else {
                    print("Cant init sendOperation")
                    sendingError = true
                }
                if (sendingError) {
                    print("Error, returning")
                } else {
                    print("Send done")
                    print("Updating scanManager with send data...")
                    scanManager.updateSendData()
                    print("Done, returning")
                }
            } else {
                print("No new send data")
            }
            backgroundTask.end()
        }
    }

最佳答案

我将 smtpSession.timeout = 100 降低到 3(秒),现在它不再阻塞 UI。更多的是一种黑客而不是解决方案,但它有效。

关于ios - 应用程序运行时在后台使用 SMTP Mailcore2 发送邮件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56157309/

相关文章:

ios - captureStillImageAsynchronously 在特定时间不起作用

asynchronous - async 是 Kotlin 中 Coroutines 的关键字吗?

ios - MKMapSnapshotOptions : Adding snapshot of Custom Pin Annotation View or UIView

ios - 表在滚动之前不会重新加载数据

ios - 我正在获取一个不存在的文件的标题信息?

ios - performSegue 来自 CollectionViewCell didSelectItemAt 在导航和标签栏 Controller 中

json - 如何转换 JSON 以在 Swift 中使用 CLLocationCoordinate2D

c# - .NET 异步 Oracle 连接的方法

android - NativeScript 模式在 ios 上全屏显示

iphone - 高分辨率屏幕中的应用程序图像