`
lizaochengwen
  • 浏览: 659627 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

使用MFMailComposeViewController发邮件

 
阅读更多
需要使用系统发邮件,就找到了许多例子,最后自己整理、处理后的代码,希望可以帮到其他人


类似例子:http://howtomakeiphoneapps.com/home/2009/7/14/how-to-make-your-iphone-app-send-email-with-attachments.html

添加MessageUI. framework#import <MessageUI/MessageUI.h>MFMailComposeViewControllerDelegate
代码如下:
#pragma mark -
#pragma mark MFMailComposeViewController
- (void) alertWithTitle:(NSString *)_title_ msg:(NSString *)msg {
    UIAlertView *alert = [[UIAlertView alloc] initWithTitle:_title_
                                                    message:msg
                                                   delegate:nil
                                          cancelButtonTitle:@"确定"
                                          otherButtonTitles:nil];
    [alert show];
    [alert release];
}

-(void)displayComposerSheet {
    MFMailComposeViewController *mailPicker = [[MFMailComposeViewController alloc] init];
    mailPicker.mailComposeDelegate = self;
   
    [mailPicker setSubject:@"eMail主题"];
   
    // 添加发送者
    NSArray *toRecipients = [NSArray arrayWithObject:@"first@example.com"];
    //NSArray *ccRecipients = [NSArray arrayWithObjects:@"second@example.com", @"third@example.com", nil];
    //NSArray *bccRecipients = [NSArray arrayWithObject:@"fourth@example.com", nil];
    [mailPicker setToRecipients:toRecipients];
    //[picker setCcRecipients:ccRecipients];   
    //[picker setBccRecipients:bccRecipients];
   
    // 添加图片
    UIImage *addPic = [UIImage imageNamed:@"Icon.png"];
    NSData *imageData = UIImagePNGRepresentation(addPic);            // png
    // NSData *imageData = UIImageJPEGRepresentation(addPic, 1);    // jpeg
    [mailPicker addAttachmentData:imageData mimeType:@"" fileName:@"Icon.png"];
   
    NSString *emailBody = @"eMail 正文";
    [mailPicker setMessageBody:emailBody isHTML:YES];
   
    [self presentModalViewController:mailPicker animated:YES];
    [mailPicker release];
}

-(void)launchMailAppOnDevice {
    NSString *recipients = @"mailto:first@example.com&subject=my email!";
    //@"mailto:first@example.com?cc=second@example.com,third@example.com&subject=my email!";
    NSString *body = @"&body=email body!";
   
    NSString *email = [NSString stringWithFormat:@"%@%@", recipients, body];
    email = [email stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
   
    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:email]];
}

-(void)sendEMail {
    Class mailClass = (NSClassFromString(@"MFMailComposeViewController"));
   
    if (mailClass != nil) {
        if ([mailClass canSendMail]) {
            [self displayComposerSheet];
        } else {
            [self launchMailAppOnDevice];
        }
    } else {
        [self launchMailAppOnDevice];
    }   
}

- (void)mailComposeController:(MFMailComposeViewController *)controller
          didFinishWithResult:(MFMailComposeResult)result error:(NSError *)error {
    NSString *msg;
   
    switch (result) {
        case MFMailComposeResultCancelled:
            msg = @"邮件发送取消";
            break;
        case MFMailComposeResultSaved:
            msg = @"邮件保存成功";
            [self alertWithTitle:nil msg:msg];
            break;
        case MFMailComposeResultSent:
            msg = @"邮件发送成功";
            [self alertWithTitle:nil msg:msg];
            break;
        case MFMailComposeResultFailed:
            msg = @"邮件发送失败";
            [self alertWithTitle:nil msg:msg];
            break;
        default:
            break;
    }
   
    NSLog(@"发送结果:%@", msg);
    [self dismissModalViewControllerAnimated:YES];
}
from:http://www.cocoachina.com/bbs/simple/?t59626.html
分享到:
评论

相关推荐

    IOS 调用系统发邮件功能demo非常好用

    在iOS平台上,调用系统发邮件功能是一种常见的需求,它可以让用户通过应用程序直接发送电子邮件而无需离开应用。本文将深入探讨如何实现这个功能,并提供一个名为"MailDemo"的示例项目来帮助开发者理解。 首先,...

    IOS打电话发短信发邮件的封装类

    在iOS中,我们可以使用`MFMailComposeViewController`类来创建和配置邮件视图。首先,确保你的应用包含了`MessageUI`框架,然后检查设备是否支持发送邮件: ```swift import MessageUI if ...

    IOS 发送邮件 DEMO

    `MFMailComposeViewController`适合简单的邮件发送需求,用户界面友好,但依赖于设备上的邮件配置。而MailCore2适用于需要自定义界面或者后台发送邮件的复杂场景。 在压缩包文件"SendEmailDemo"中,你应该能找到...

    ios发邮件功能

    在iOS平台上,集成邮件发送功能是一项常见的需求,可以让用户直接在应用内发送电子邮件。通过调用系统的API,开发者可以轻松实现这一功能。本篇将详细讲解如何在iOS中利用Apple提供的MessageUI框架来实现邮件的发送...

    delphi xe 邮件发送

    在iOS中,可以使用MFMailComposeViewController类来展示邮件撰写界面。在Windows上,可以直接使用IdSMTP组件进行邮件发送。 在实际开发中,需要注意以下几点: 1. 验证SMTP服务器设置:确保SMTP服务器允许第三方...

    IOS 异常崩溃时发送邮件

    // 发送邮件功能,可以使用MFMailComposeViewController或第三方库 if ([MFMailComposeViewController canSendMail]) { MFMailComposeViewController *mailComposer = [[MFMailComposeViewController alloc] init...

    ios-发送邮件.zip

    在"02-发邮件"这个子文件中,可能包含了实现上述步骤的源代码文件,包括界面设计和事件处理。开发者可以通过查看和运行这个示例项目,更深入地了解如何在实际项目中集成邮件发送功能。记住,理解并遵循苹果的Human ...

    IOS 实现发邮件功能

    在iOS平台上,实现发送邮件的功能通常需要利用`MFMailComposeViewController`类,这是Apple提供的一个邮件作成界面控制器。下面将详细介绍如何通过Objective-C代码来实现在iOS应用中发送邮件。 首先,在`...

    IOS应用源码之使用MessageUI发送带附件的邮件 .zip

    在iOS开发中,使用MessageUI框架是实现应用内发送邮件功能的标准方式,尤其当需要添加附件时。MessageUI框架提供了一套易于使用的接口,使得开发者能够集成邮件发送功能,包括支持文本、图片、文档等附件。这个源码...

    Mac OS X代码方式发送邮件及附件

    在尝试发送邮件之前,你需要检查当前用户是否已经配置了至少一个邮件账户,这可以通过调用MFMailComposeViewController的`canSendMail`方法完成: ```swift if MFMailComposeViewController.canSendMail() { // ...

    IOS发送Email Demo

    例如,使用"SwiftMailer"库,你可以创建一个SMTP会话,设置发件人、收件人、主题和正文,然后发送邮件。这个过程涉及更多网络编程和邮件格式的知识,包括SMTP命令、Base64编码和MIME类型等。 在"MailDemo"源代码...

    传智播客iOS6免费公开课程-调用打电话发短信发邮件打开浏览器

    发送邮件通常通过`MFMailComposeViewController`实现,它提供了一个邮件编辑界面。首先,确保你的应用有发送邮件的权限,然后创建并配置邮件视图控制器: ```swift import MessageUI if ...

    iOS 打电话发邮件读短信功能实现

    然后,你可以创建一个`MFMailComposeViewController`实例,设置收件人、主题和邮件正文,再将其呈现在当前视图控制器上: ```swift if MFMailComposeViewController.canSendMail() { let mailComposer = ...

    ios app异常处理可以发送邮件

    接下来,我们可以使用`MFMailComposeViewController`来创建一个邮件视图控制器,让用户发送带有异常信息的邮件。以下是一个简单的示例: ```objc if ([MFMailComposeViewController canSendMail]) { ...

    flutter_email_sender:允许使用本机平台功能从Flutter发送电子邮件

    flutter_email_sender 允许使用本机平台功能从邮件发送电子邮件。 在android中,它会通过intent打开默认的邮件应用。 在iOS中, MFMailComposeViewController用于撰写电子邮件。例子final Email email = Email ( ...

    iOS打电话、发短信、发邮件实例代码

    以上就是iOS中实现打电话、发短信、发邮件和发送QQ消息的基本步骤。在实际开发中,还需要考虑到权限请求、错误处理以及用户体验等方面的细节。例如,发送短信和邮件需要用户授权,而拨打电话可能涉及隐私问题。此外...

    IOS自带Email的两种方法实例详解

    使用openURL调用系统邮箱客户端是我们在IOS3.0以下实现发邮件功能的主要手段。我们可以通过设置url里的相关参数来指定邮件的内容,不过其缺点很明显,这样的过程会导致程序暂时退出。下面是使用openURL来发邮件的一...

    IOS 开发中发送e-mail的几种方法总结

    1. **使用`openURL`来实现发邮件** 这种方法是通过创建一个`mailto:` URL来启动系统的邮件应用程序。以下是一个示例代码: ```swift let url = URL(string: "mailto:foo@example....

    IOS应用源码之【类库与框架】开源SMTP框架skpsmtpmessage.rar

    SMTP是互联网上标准的邮件传输协议,负责从发件人的邮件服务器传输到收件人的邮件服务器。`SKPSMTPMessage`是专门为iOS开发设计的一个轻量级框架,它允许开发者通过SMTP发送邮件,无需深入了解SMTP的工作原理。 2. ...

    MAPI.rar_mapi_mobile_mobile sms_sms_短信

    iOS则通过`MFMessageComposeViewController`和`MFMailComposeViewController`进行邮件和短信的读写。然而,由于MAPI通常与电子邮件关联,可能需要找到一个适合移动平台的第三方库,如EWS(Exchange Web Services)或...

Global site tag (gtag.js) - Google Analytics