iPhoneアプリケーションからメールを送信する方法


242

iPhoneアプリケーションからメールを送信したい。iOS SDKにはメールAPIがないと聞いています。次のコードはアプリケーションを終了するため、使用したくありません。

NSString *url = [NSString stringWithString: @"mailto:foo@example.com?cc=bar@example.com&subject=Greetings%20from%20Cupertino!&body=Wish%20you%20were%20here!"];
[[UIApplication sharedApplication] openURL: [NSURL URLWithString: url]];

では、アプリからメールを送信するにはどうすればよいですか?

回答:


430

iOS 3.0以降では、MessageUIフレームワークに隠されているMFMailComposeViewControllerクラスとMFMailComposeViewControllerDelegateプロトコルを使用する必要があります。

最初にフレームワークを追加してインポートします。

#import <MessageUI/MFMailComposeViewController.h>

次に、メッセージを送信するには:

MFMailComposeViewController* controller = [[MFMailComposeViewController alloc] init];
controller.mailComposeDelegate = self;
[controller setSubject:@"My Subject"];
[controller setMessageBody:@"Hello there." isHTML:NO]; 
if (controller) [self presentModalViewController:controller animated:YES];
[controller release];

次に、ユーザーが作業を行い、時間内にデリゲートコールバックを取得します。

- (void)mailComposeController:(MFMailComposeViewController*)controller  
          didFinishWithResult:(MFMailComposeResult)result 
                        error:(NSError*)error;
{
  if (result == MFMailComposeResultSent) {
    NSLog(@"It's away!");
  }
  [self dismissModalViewControllerAnimated:YES];
}

デバイスが電子メールを送信するように構成されているかどうかを確認してください。

if ([MFMailComposeViewController canSendMail]) {
  // Show the composer
} else {
  // Handle the error
}

5
+1。インポートが必要なフレームワークはここに記載されています(mobileorchard.com/…)。
Dan Rosenstark、2010

71
ジャンプを保存するには、#import <MessageUI / MFMailComposeViewController.h>
TomH

22
ただ、この答え以来のUIViewControllerの方法を書かれたことに注意するpresentModalViewController:animated:と、dismissModalViewControllerAnimated:ブロックベースの代替方法の代わりに-非推奨としてマークされているpresentViewController:animated:completion:dismissViewControllerAnimated:completion:使用する必要があります。

2
そして、.hに代理人を設定することを忘れないでください @interface viewController : UIViewController <MFMailComposeViewControllerDelegate>
Nazir

18
そして、IOS 6で[self presentModalViewController:controller animated:YES]; 置換 [self presentViewController:controller animated:YES completion:nil]; および [self dismissModalViewControllerAnimated:YES]; 置換 [self dismissViewControllerAnimated:YES completion:nil];
Nazir

61

MFMailComposeViewControllerは、iPhone OS 3.0ソフトウェアのリリース後の方法です。サンプルコードまたは私が書いチュートリアルを見ることができます。


2
Mugunthによる素晴らしい投稿。バディに行く方法!
ジョーダン

1
本当に素晴らしいです。ありがとう。ユーザーからのメールと件名を受け入れるために特別にビューを設計しました。同じコードを実装することで、やや似たようなビューが表示されます。ビューコントローラークラスのボタンプレスイベントからデリゲートメソッドを呼び出すことはできますか
Shibin

同じサンプルコードをダウンロードしましたが、メールは送信されません。メールが正常に送信されたことを通知するだけですが、メールは受信されません。デフォルトで赤色に見えるMessageUIフレームワークを追加しようとしましたが、それでもアプリケーションはメールを送信していません。この点でどんな助けでも大歓迎です。アプリをシミュレータでテストしています。
Ravi shankar

シミュレーターからメールを送信できません。
malaki1974 14年

20

ここに追加したいことがいくつかあります。

  1. mail.appがシミュレータにインストールされていないため、mailto URLを使用してもシミュレータでは機能しません。デバイスでも動作します。

  2. mailto URLの長さには制限があります。URLが4096文字を超える場合、mail.appは起動しません。

  3. アプリを離れることなく電子メールを送信できるOS 3.0の新しいクラスがあります。クラスMFMailComposeViewControllerを参照してください。


13

アプリケーションからメールを送信する場合は、アプリ内に独自のメールクライアント(SMTP)をコーディングするか、サーバーにメールを送信させない限り、上記のコードが唯一の方法です。

たとえば、メールを送信するサーバー上のURLを呼び出すようにアプリをコーディングできます。次に、コードからURLを呼び出すだけです。

上記のコードでは、メールに何も添付できないことに注意してください。SMTPクライアントメソッドを使用すると、サーバー側メソッドと同様にこれを実行できます。


12

以下のコードは、私のアプリケーションで添付ファイル付きの電子メールを送信するために使用されます。ここで添付ファイルは画像です。任意のタイプのファイルを送信できます。正しいは、正しい「mimeType」を指定する必要があることだけです。

これを.hファイルに追加します

#import <MessageUI/MFMailComposeViewController.h>

MessageUI.frameworkをプロジェクトファイルに追加 する

NSArray *paths = SSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask, YES);

NSString *documentsDirectory = [paths objectAtIndex:0];

NSString *getImagePath = [documentsDirectory stringByAppendingPathComponent:@"myGreenCard.png"];



MFMailComposeViewController* controller = [[MFMailComposeViewController alloc] init];
controller.mailComposeDelegate = self;
[controller setSubject:@"Green card application"];
[controller setMessageBody:@"Hi , <br/>  This is my new latest designed green card." isHTML:YES]; 
[controller addAttachmentData:[NSData dataWithContentsOfFile:getImagePath] mimeType:@"png" fileName:@"My Green Card"];
if (controller)
    [self presentModalViewController:controller animated:YES];
[controller release];

デリゲートメソッドは以下の通りです

  -(void)mailComposeController:(MFMailComposeViewController*)controller didFinishWithResult:(MFMailComposeResult)result error:(NSError*)error;
{
    if (result == MFMailComposeResultSent) {
        NSLog(@"It's away!");
    }
    [self dismissModalViewControllerAnimated:YES];
}

11

これは、uを支援できるコードですが、メッセージui framewarkを含め、デリゲートメソッドMFMailComposeViewControllerDelegateを含めることを忘れないでください。

-(void)EmailButtonACtion{

        if ([MFMailComposeViewController canSendMail])
        {
            MFMailComposeViewController *controller = [[MFMailComposeViewController alloc] init];
            controller.mailComposeDelegate = self;
            [controller.navigationBar setBackgroundImage:[UIImage imageNamed:@"navigation_bg_iPhone.png"] forBarMetrics:UIBarMetricsDefault];
            controller.navigationBar.tintColor = [UIColor colorWithRed:51.0/255.0 green:51.0/255.0 blue:51.0/255.0 alpha:1.0];
            [controller setSubject:@""];
            [controller setMessageBody:@" " isHTML:YES];
            [controller setToRecipients:[NSArray arrayWithObjects:@"",nil]];
            UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
            UIImage *ui = resultimg.image;
            pasteboard.image = ui;
            NSData *imageData = [NSData dataWithData:UIImagePNGRepresentation(ui)];
            [controller addAttachmentData:imageData mimeType:@"image/png" fileName:@" "];
            [self presentViewController:controller animated:YES completion:NULL];
        }
        else{
            UIAlertView *alert=[[UIAlertView alloc] initWithTitle:@"alrt" message:nil delegate:self cancelButtonTitle:@"ok" otherButtonTitles: nil] ;
            [alert show];
        }

    }
    -(void)mailComposeController:(MFMailComposeViewController*)controller didFinishWithResult:(MFMailComposeResult)result error:(NSError*)error
    {

        [MailAlert show];
        switch (result)
        {
            case MFMailComposeResultCancelled:
                MailAlert.message = @"Email Cancelled";
                break;
            case MFMailComposeResultSaved:
                MailAlert.message = @"Email Saved";
                break;
            case MFMailComposeResultSent:
                MailAlert.message = @"Email Sent";
                break;
            case MFMailComposeResultFailed:
                MailAlert.message = @"Email Failed";
                break;
            default:
                MailAlert.message = @"Email Not Sent";
                break;
        }
        [self dismissViewControllerAnimated:YES completion:NULL];
        [MailAlert show];
    }

本当にありがとうございました!HTML本文の非常に役立つ例。
Resty

4

Swift 2.2。Esqの回答からの抜粋

import Foundation
import MessageUI

class MailSender: NSObject, MFMailComposeViewControllerDelegate {

    let parentVC: UIViewController

    init(parentVC: UIViewController) {
        self.parentVC = parentVC
        super.init()
    }

    func send(title: String, messageBody: String, toRecipients: [String]) {
        if MFMailComposeViewController.canSendMail() {
            let mc: MFMailComposeViewController = MFMailComposeViewController()
            mc.mailComposeDelegate = self
            mc.setSubject(title)
            mc.setMessageBody(messageBody, isHTML: false)
            mc.setToRecipients(toRecipients)
            parentVC.presentViewController(mc, animated: true, completion: nil)
        } else {
            print("No email account found.")
        }
    }

    func mailComposeController(controller: MFMailComposeViewController,
        didFinishWithResult result: MFMailComposeResult, error: NSError?) {

            switch result.rawValue {
            case MFMailComposeResultCancelled.rawValue: print("Mail Cancelled")
            case MFMailComposeResultSaved.rawValue: print("Mail Saved")
            case MFMailComposeResultSent.rawValue: print("Mail Sent")
            case MFMailComposeResultFailed.rawValue: print("Mail Failed")
            default: break
            }

            parentVC.dismissViewControllerAnimated(false, completion: nil)
    }
}

クライアントコード:

var ms: MailSender?

@IBAction func onSendPressed(sender: AnyObject) {
    ms = MailSender(parentVC: self)
    let title = "Title"
    let messageBody = "/programming/310946/how-can-i-send-mail-from-an-iphone-application this question."
    let toRecipents = ["foo@bar.com"]
    ms?.send(title, messageBody: messageBody, toRecipents: toRecipents)
}

4

iPhoneアプリケーションからメールを送信するには、以下のタスクリストを実行する必要があります。

ステップ1:メールを送信するコントローラークラスにインポート#import <MessageUI/MessageUI.h>します。

手順2:以下のようにデリゲートをコントローラーに追加します

 @interface <yourControllerName> : UIViewController <MFMessageComposeViewControllerDelegate, MFMailComposeViewControllerDelegate>

手順3:メールを送信するための以下のメソッドを追加します。

 - (void) sendEmail {
 // Check if your app support the email.
 if ([MFMailComposeViewController canSendMail]) {
    // Create an object of mail composer.
    MFMailComposeViewController *mailComposer =      [[MFMailComposeViewController alloc] init];
    // Add delegate to your self.
    mailComposer.mailComposeDelegate = self;
    // Add recipients to mail if you do not want to add default recipient then remove below line.
    [mailComposer setToRecipients:@[<add here your recipient objects>]];
    // Write email subject.
    [mailComposer setSubject:@“<Your Subject Here>”];
    // Set your email body and if body contains HTML then Pass “YES” in isHTML.
    [mailComposer setMessageBody:@“<Your Message Body>” isHTML:NO];
    // Show your mail composer.
    [self presentViewController:mailComposer animated:YES completion:NULL];
 }
 else {
 // Here you can show toast to user about not support to sending email.
}
}

手順4:MFMailComposeViewControllerデリゲートを実装する

- (void)mailComposeController:(MFMailComposeViewController *)controller didFinishWithResult:(MFMailComposeResult)result error:(nullable NSError *)error {
[controller dismissViewControllerAnimated:TRUE completion:nil];


switch (result) {
   case MFMailComposeResultSaved: {
    // Add code on save mail to draft.
    break;
}
case MFMailComposeResultSent: {
    // Add code on sent a mail.
    break;
}
case MFMailComposeResultCancelled: {
    // Add code on cancel a mail.
    break;
}
case MFMailComposeResultFailed: {
    // Add code on failed to send a mail.
    break;
}
default:
    break;
}
}

この回答は、既存の回答の1つにまだ含まれていない新しい情報を提供しますか?
Florian Koch

2

Swift 2.0

func mailComposeController(controller: MFMailComposeViewController, didFinishWithResult result: MFMailComposeResult, error: NSError?){
    if let error = error{
        print("Error: \(error)")
    }else{
        //NO Error
        //------------------------------------------------
        var feedbackMsg = ""

        switch result.rawValue {
        case MFMailComposeResultCancelled.rawValue:
            feedbackMsg = "Mail Cancelled"
        case MFMailComposeResultSaved.rawValue:
            feedbackMsg = "Mail Saved"
        case MFMailComposeResultSent.rawValue:
            feedbackMsg = "Mail Sent"
        case MFMailComposeResultFailed.rawValue:
            feedbackMsg = "Mail Failed"
        default:
            feedbackMsg = ""
        }

        print("Mail: \(feedbackMsg)")

        //------------------------------------------------
    }
}

1

ヒアズSwiftバージョン:

import MessageUI

class YourVC: UIViewController {
    override func viewDidLoad() {
        super.viewDidLoad()
        if MFMailComposeViewController.canSendMail() {
            var emailTitle = "Vea Software Feedback"
            var messageBody = "Vea Software! :) "
            var toRecipents = ["pj@veasoftware.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)
        } else {
            println("No email account found")
        }
    }
}

extension YourVC: MFMailComposeViewControllerDelegate {
    func mailComposeController(controller: MFMailComposeViewController!, didFinishWithResult result: MFMailComposeResult, error: NSError!) {
        switch result.value {
        case MFMailComposeResultCancelled.value:
            println("Mail Cancelled")
        case MFMailComposeResultSaved.value:
            println("Mail Saved")
        case MFMailComposeResultSent.value:
            println("Mail Sent")
        case MFMailComposeResultFailed.value:
            println("Mail Failed")
        default:
            break
        }
        self.dismissViewControllerAnimated(false, completion: nil)
    }
}

ソース


弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.