ฉันจะส่งจดหมายจากแอปพลิเคชัน 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 และใหม่กว่าคุณควรใช้MFMailComposeViewControllerคลาสและMFMailComposeViewControllerDelegateโปรโตคอลที่ซ่อนอยู่ในกรอบ MessageUI

เพิ่มกรอบและการนำเข้าก่อน:

#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

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
smakstr

ฉันดาวน์โหลดตัวอย่างรหัสเดียวกัน แต่ไม่ได้ส่งจดหมายใด ๆ จะแจ้งเตือนว่าจดหมายนั้นส่งสำเร็จ แต่ไม่ได้รับจดหมายใด ๆ ฉันได้ลองเพิ่มกรอบข้อความ MessageUI ซึ่งปรากฏเป็นสีแดงเป็นค่าเริ่มต้น แต่ยังคงเป็นแอปพลิเคชันที่ไม่ได้ส่งจดหมาย ความช่วยเหลือใด ๆ ในเรื่องนี้จะได้รับการชื่นชมอย่างมาก ฉันกำลังทดสอบแอพในตัวจำลอง
Ravi shankar

ไม่สามารถส่งอีเมลจากโปรแกรมจำลอง
malaki1974

20

บางสิ่งที่ฉันต้องการเพิ่มที่นี่:

  1. การใช้ mailto URL จะไม่ทำงานในเครื่องมือจำลองเนื่องจากไม่ได้ติดตั้ง mail.app ในเครื่องมือจำลอง มันทำงานบนอุปกรณ์แม้ว่า

  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

นี่คือรหัสที่สามารถช่วยคุณได้ แต่อย่าลืมที่จะรวมข้อความ 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
พักผ่อน

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;
}
}

คำตอบนี้ให้ข้อมูลใหม่ที่ไม่ได้รวมอยู่ในคำตอบที่มีอยู่แล้วหรือไม่
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

นี่คือรุ่นที่รวดเร็ว:

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)
    }
}

แหล่ง


0

ฉันเขียน wrapper ง่ายๆที่เรียกว่า KRNSendEmail ซึ่งทำให้การส่งอีเมลไปยังการโทรด้วยวิธีง่าย ๆ ทำได้ง่ายขึ้น

KRNSendEmail ได้รับการบันทึกไว้เป็นอย่างดีและเพิ่มใน CocoaPods

https://github.com/ulian-onua/KRNSendEmail

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.