Swiftからメールアプリを開く方法


119

ユーザーがメールアドレスを入力し、メールアプリを開くボタンを押すというシンプルな高速アプリに取り組んでいます。アドレスバーに入力したアドレスが表示されます。Objective-Cでこれを行う方法は知っていますが、Swiftで機能させるのに問題があります。

回答:


240

iOSでシンプルなmailto:リンクを使用して、メールアプリを開くことができます。

let email = "foo@bar.com"
if let url = URL(string: "mailto:\(email)") {
  if #available(iOS 10.0, *) {
    UIApplication.shared.open(url)
  } else {
    UIApplication.shared.openURL(url)
  }    
}

77
これはシミュレータでは機能せず、デバイスでのみ機能することを追加する価値があります... stackoverflow.com/questions/26052815/…を
Pieter

4
ここで「!」を追加する必要があります 2行目では、NSURLのNSURL(string: "mailto:(email)")!
anthonyqz 2015年

4
回答が明らかに3年前のiOS 10以降でのみ利用可能であると言うのはなぜ
ですか

1
Swift 4 / iOS 10以降の例:UIApplication.shared.open(url、options:[:]、completionHandler:nil)オプションに空の辞書を渡すと、openURLを呼び出した場合と同じ結果になります。
Luca Ventura 2017

ありがとう...それはとても役に立ちます:) :)
Anjali jariwala

60

他の答えはすべて正解ですが、アプリケーションを実行しているiPhone / iPadにAppleのメールアプリがインストールされているかどうかは、ユーザーが削除できるためわかりません。

複数の電子メールクライアントをサポートすることをお勧めします。次のコードは、電子メールの送信をより適切な方法で処理します。コードの流れは次のとおりです。

  • メールアプリがインストールされている場合は、提供されたデータが事前に入力されたメールのコンポーザーを開きます
  • それ以外の場合は、Gmailアプリ、Outlook、Yahooメール、Sparkの順に開いてみてください。
  • これらのクライアントがいずれもインストールされていない場合は、デフォルトにフォールバックしmailto:..て、ユーザーにAppleのメールアプリをインストールするように求めます。

コードはSwift 5で記述されています。

    import MessageUI
    import UIKit

    class SendEmailViewController: UIViewController, MFMailComposeViewControllerDelegate {

        @IBAction func sendEmail(_ sender: UIButton) {
            // Modify following variables with your text / recipient
            let recipientEmail = "test@email.com"
            let subject = "Multi client email support"
            let body = "This code supports sending email via multiple different email apps on iOS! :)"

            // Show default mail composer
            if MFMailComposeViewController.canSendMail() {
                let mail = MFMailComposeViewController()
                mail.mailComposeDelegate = self
                mail.setToRecipients([recipientEmail])
                mail.setSubject(subject)
                mail.setMessageBody(body, isHTML: false)

                present(mail, animated: true)

            // Show third party email composer if default Mail app is not present
            } else if let emailUrl = createEmailUrl(to: recipientEmail, subject: subject, body: body) {
                UIApplication.shared.open(emailUrl)
            }
        }

        private func createEmailUrl(to: String, subject: String, body: String) -> URL? {
            let subjectEncoded = subject.addingPercentEncoding(withAllowedCharacters: .urlHostAllowed)!
            let bodyEncoded = body.addingPercentEncoding(withAllowedCharacters: .urlHostAllowed)!

            let gmailUrl = URL(string: "googlegmail://co?to=\(to)&subject=\(subjectEncoded)&body=\(bodyEncoded)")
            let outlookUrl = URL(string: "ms-outlook://compose?to=\(to)&subject=\(subjectEncoded)")
            let yahooMail = URL(string: "ymail://mail/compose?to=\(to)&subject=\(subjectEncoded)&body=\(bodyEncoded)")
            let sparkUrl = URL(string: "readdle-spark://compose?recipient=\(to)&subject=\(subjectEncoded)&body=\(bodyEncoded)")
            let defaultUrl = URL(string: "mailto:\(to)?subject=\(subjectEncoded)&body=\(bodyEncoded)")

            if let gmailUrl = gmailUrl, UIApplication.shared.canOpenURL(gmailUrl) {
                return gmailUrl
            } else if let outlookUrl = outlookUrl, UIApplication.shared.canOpenURL(outlookUrl) {
                return outlookUrl
            } else if let yahooMail = yahooMail, UIApplication.shared.canOpenURL(yahooMail) {
                return yahooMail
            } else if let sparkUrl = sparkUrl, UIApplication.shared.canOpenURL(sparkUrl) {
                return sparkUrl
            }

            return defaultUrl
        }

        func mailComposeController(_ controller: MFMailComposeViewController, didFinishWith result: MFMailComposeResult, error: Error?) {
            controller.dismiss(animated: true)
        }
    }

Outlookアプリは解析できないため、意図的に本文を省略していることに注意してください。

またInfo.plist、使用するURlクエリスキームをホワイトリストに登録する次のコードをファイルに追加する必要があります。

<key>LSApplicationQueriesSchemes</key>
<array>
    <string>googlegmail</string>
    <string>ms-outlook</string>
    <string>readdle-spark</string>
    <string>ymail</string>
</array>

4
よくやった。これは最も完全な答えであり、他のメールクライアントアプリに簡単に拡張できます。私見、2019年後半に、他のほとんどの解決策が示唆しているように、デフォルトのApple Mailアプリを使用していない場合に「申し訳ありませんが、あなたは運が悪い」と伝えるだけでは容認できないと思います。これはその欠陥を修正します。
wildcat12

このメソッドはHTMLで機能しますか?正しく表示されません。
マシューブラッドショー

@MatthewBradshaw isHTML上記のコードをtrueに設定することで、デフォルトのメールコンポーザーのHTMLをサポートできます。他のクライアントの場合、それは可能ではないようです。詳細については、stackoverflow.com
questions / 5620324 / mailto

1
おかげで、これは素晴らしいです。ユーザーが好みのクライアントを選択できるように少し変更しました(canOpenUrlで事前にフィルタリングしています)。Microsoft Outlookの本体は正常に動作しています:-)
フィリップ

これは素晴らしいです!誰かがSwiftUIのためにこれをしましたか?
Averett

55

メールアプリ自体に切り替えるか、単に開いてメールを送信するかはわかりません。ボタンIBActionにリンクされた後者のオプションの場合:

    import UIKit
    import MessageUI

    class ViewController: UIViewController, MFMailComposeViewControllerDelegate {

    @IBAction func launchEmail(sender: AnyObject) {

    var emailTitle = "Feedback"
    var messageBody = "Feature request or bug report?"
    var toRecipents = ["friend@stackoverflow.com"]
    var mc: MFMailComposeViewController = MFMailComposeViewController()
    mc.mailComposeDelegate = self
    mc.setSubject(emailTitle)
    mc.setMessageBody(messageBody, isHTML: false)
    mc.setToRecipients(toRecipents)

    self.presentViewController(mc, animated: true, completion: nil)
    }

    func mailComposeController(controller:MFMailComposeViewController, didFinishWithResult result:MFMailComposeResult, error:NSError) {
        switch result {
        case MFMailComposeResultCancelled:
            print("Mail cancelled")
        case MFMailComposeResultSaved:
            print("Mail saved")
        case MFMailComposeResultSent:
            print("Mail sent")
        case MFMailComposeResultFailed:
            print("Mail sent failure: \(error?.localizedDescription)")
        default:
            break
        }
        self.dismissViewControllerAnimated(true, completion: nil)
    }

    }

1
mailComposeControllerデリゲート関数が呼び出されないという問題があります。
オースティン2015年

3
あなたの輸入品には「輸入MessageUI」を追加して、あなたのようなクラス宣言に「MFMailComposeViewControllerDelegate」オプションを追加してください: class myClass: UIViewController, MFMailComposeViewControllerDelegate {
Jalakoo

MFMailComposeViewController()が私のためにnilを返す
ilan

2
また、問題があります:'NSInvalidArgumentException', reason: 'Application tried to present a nil modal view controller on target。一部のデバイス(iPhone 5、iPhone 6、iPad Mini)でアプリがクラッシュする
Spacemonkey 2015年

23

Swift 3では、必ずプロトコルを追加import MessageUIし、MFMailComposeViewControllerDelegateプロトコルに準拠する必要があります。

func sendEmail() {
  if MFMailComposeViewController.canSendMail() {
    let mail = MFMailComposeViewController()
    mail.mailComposeDelegate = self
    mail.setToRecipients(["ved.ios@yopmail.com"])
    mail.setMessageBody("<p>You're so awesome!</p>", isHTML: true)

    present(mail, animated: true)
  } else {
    // show failure alert
  }
}

プロトコル:

func mailComposeController(_ controller: MFMailComposeViewController, didFinishWith result: MFMailComposeResult, error: Error?) {
  controller.dismiss(animated: true)
}

16

Swift 2、可用性チェック付き:

import MessageUI

if MFMailComposeViewController.canSendMail() {
    let mail = MFMailComposeViewController()
    mail.mailComposeDelegate = self
    mail.setToRecipients(["test@test.test"])
    mail.setSubject("Bla")
    mail.setMessageBody("<b>Blabla</b>", isHTML: true)
    presentViewController(mail, animated: true, completion: nil)
} else {
    print("Cannot send mail")
    // give feedback to the user
}


// MARK: - MFMailComposeViewControllerDelegate

func mailComposeController(controller: MFMailComposeViewController, didFinishWithResult result: MFMailComposeResult, error: NSError?) {
    switch result.rawValue {
    case MFMailComposeResultCancelled.rawValue:
        print("Cancelled")
    case MFMailComposeResultSaved.rawValue:
        print("Saved")
    case MFMailComposeResultSent.rawValue:
        print("Sent")
    case MFMailComposeResultFailed.rawValue:
        print("Error: \(error?.localizedDescription)")
    default:
        break
    }
    controller.dismissViewControllerAnimated(true, completion: nil)
}

16

Swift 4.2以降およびiOS 9以降の場合

let appURL = URL(string: "mailto:TEST@EXAMPLE.COM")!

if #available(iOS 10.0, *) {
    UIApplication.shared.open(appURL, options: [:], completionHandler: nil)
} else {
    UIApplication.shared.openURL(appURL)
}

TEST@EXAMPLE.COMを目的のメールアドレスに置き換えます。


15

ここでは、Swift 4の外観を示します。

import MessageUI

if MFMailComposeViewController.canSendMail() {
    let mail = MFMailComposeViewController()
    mail.mailComposeDelegate = self
    mail.setToRecipients(["test@test.test"])
    mail.setSubject("Bla")
    mail.setMessageBody("<b>Blabla</b>", isHTML: true)
    present(mail, animated: true, completion: nil)
} else {
    print("Cannot send mail")
    // give feedback to the user
}

func mailComposeController(_ controller: MFMailComposeViewController, didFinishWith result: MFMailComposeResult, error: Error?) {
        switch result.rawValue {
        case MFMailComposeResult.cancelled.rawValue:
            print("Cancelled")
        case MFMailComposeResult.saved.rawValue:
            print("Saved")
        case MFMailComposeResult.sent.rawValue:
            print("Sent")
        case MFMailComposeResult.failed.rawValue:
            print("Error: \(String(describing: error?.localizedDescription))")
        default:
            break
        }
        controller.dismiss(animated: true, completion: nil)
    }

12

Swift 3のStephen Groomからの更新された回答

let email = "email@email.com"
let url = URL(string: "mailto:\(email)")
UIApplication.shared.openURL(url!)

10

単にを介してメールクライアントを開くことを検討している場合のSwift 4の更新はURL次のとおりです。

let email = "foo@bar.com"
if let url = URL(string: "mailto:\(email)") {
   UIApplication.shared.open(url, options: [:], completionHandler: nil)
}

これは私にとって完全にうまくいった:)


9

これは、Swiftの3つのステップの簡単な解決策です。

import MessageUI

代理人を適合させるために追加

MFMailComposeViewControllerDelegate

そして、あなたのメソッドを作成してください:

    func sendEmail() {
    if MFMailComposeViewController.canSendMail() {
        let mail = MFMailComposeViewController()
        mail.mailComposeDelegate = self
        mail.setToRecipients(["support@mail.com"])
        mail.setSubject("Support App")
        mail.setMessageBody("<p>Send us your issue!</p>", isHTML: true)
        presentViewController(mail, animated: true, completion: nil)
    } else {
        // show failure alert
    }
}

func mailComposeController(controller: MFMailComposeViewController, didFinishWithResult result: MFMailComposeResult, error: NSError?) {
    controller.dismissViewControllerAnimated(true, completion: nil)
}

4

組み込みのメールコンポーザーで送信してみてください。それが失敗した場合は、shareで試してください。

func contactUs() {

    let email = "info@example.com" // insert your email here
    let subject = "your subject goes here"
    let bodyText = "your body text goes here"

    // https://developer.apple.com/documentation/messageui/mfmailcomposeviewcontroller
    if MFMailComposeViewController.canSendMail() {

        let mailComposerVC = MFMailComposeViewController()
        mailComposerVC.mailComposeDelegate = self as? MFMailComposeViewControllerDelegate

        mailComposerVC.setToRecipients([email])
        mailComposerVC.setSubject(subject)
        mailComposerVC.setMessageBody(bodyText, isHTML: false)

        self.present(mailComposerVC, animated: true, completion: nil)

    } else {
        print("Device not configured to send emails, trying with share ...")

        let coded = "mailto:\(email)?subject=\(subject)&body=\(bodyText)".addingPercentEncoding(withAllowedCharacters: .urlQueryAllowed)
        if let emailURL = URL(string: coded!) {
            if #available(iOS 10.0, *) {
                if UIApplication.shared.canOpenURL(emailURL) {
                    UIApplication.shared.open(emailURL, options: [:], completionHandler: { (result) in
                        if !result {
                            print("Unable to send email.")
                        }
                    })
                }
            }
            else {
                UIApplication.shared.openURL(emailURL as URL)
            }
        }
    }
}

エラー:「スキームappへのクエリはこのアプリに許可されていません」
Khushal iOS

3
@IBAction func launchEmail(sender: AnyObject) {
 if if MFMailComposeViewController.canSendMail() {
   var emailTitle = "Feedback"
   var messageBody = "Feature request or bug report?"
   var toRecipents = ["friend@stackoverflow.com"]
   var mc: MFMailComposeViewController = MFMailComposeViewController()
   mc.mailComposeDelegate = self
   mc.setSubject(emailTitle)
   mc.setMessageBody(messageBody, isHTML: false)
   mc.setToRecipients(toRecipents)

   self.present(mc, animated: true, completion: nil)
 } else {
   // show failure alert
 }
}

func mailComposeController(controller:MFMailComposeViewController, didFinishWithResult result:MFMailComposeResult, error:NSError) {
    switch result {
    case .cancelled:
        print("Mail cancelled")
    case .saved:
        print("Mail saved")
    case .sent:
        print("Mail sent")
    case .failed:
        print("Mail sent failure: \(error?.localizedDescription)")
    default:
        break
    }
    self.dismiss(animated: true, completion: nil)
}

すべてのユーザーがメールを送信するようにデバイスを設定しているわけではないことに注意してください。そのため、送信を試みる前にcanSendMail()の結果を確認する必要があります。メールウィンドウを閉じるには、didFinishWithコールバックをキャッチする必要があることにも注意してください。


1

ビューコントローラーで、メールアプリをタップして開く場所から。

  • ファイルの先頭で、MessageUIをインポートします
  • この関数をコントローラー内に配置します。

    func showMailComposer(){
    
      guard MFMailComposeViewController.canSendMail() else {
           return
      }
      let composer = MFMailComposeViewController()
      composer.mailComposeDelegate = self
      composer.setToRecipients(["abc@gmail.com"]) // email id of the recipient
      composer.setSubject("testing!!!")
      composer.setMessageBody("this is a test mail.", isHTML: false)
      present(composer, animated: true, completion: nil)
     }
  • View Controllerを拡張し、MFMailComposeViewControllerDelegateに準拠します。

  • このメソッドを入れて失敗を処理し、メールを送信します。

    func mailComposeController(_ controller: MFMailComposeViewController, didFinishWith result: MFMailComposeResult, error: Error?) {
      if let _ = error {
          controller.dismiss(animated: true, completion: nil)
          return
      }
      controller.dismiss(animated: true, completion: nil)
    }

0

Swift 2.3でまだ遅れている私たちのために、ここに私たちの構文でのゴードンの答えがあります:

let email = "foo@bar.com"
if let url = NSURL(string: "mailto:\(email)") {
   UIApplication.sharedApplication().openURL(url)
}

0

Swift 4.2以降の場合

let supportEmail = "abc@xyz.com"
if let emailURL = URL(string: "mailto:\(supportEmail)"), UIApplication.shared.canOpenURL(emailURL)
{
    UIApplication.shared.open(emailURL, options: [:], completionHandler: nil)
}

メールを送信するために、ユーザーに多くのメールオプション(iCloud、google、yahoo、Outlook.comなど-メールが事前に構成されていない場合)を選択するようにユーザーに指示します。


1
私の場合、iOS 13では、UIApplication.shared.openを呼び出すと、OS。メールアプリ。したがって、これは間違いなくうまくいっていません。
NeverwinterMoon
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.