服务器之家:专注于VPS、云服务器配置技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - IOS - IOS自带Email的两种方法实例详解

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

2021-03-19 15:30u011374880 IOS

这篇文章主要介绍了IOS自带Email的两种方法实例详解的相关资料,需要的朋友可以参考下

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

IOS系统框架提供的两种发送Email的方法:openURL 和 MFMailComposeViewController。借助这两个方法,我们可以轻松的在应用里加入如用户反馈这类需要发送邮件的功能。 

1.openURL

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

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
-(void)launchMailApp 
{  
  NSMutableString *mailUrl = [[[NSMutableString alloc]init]autorelease]; 
  //添加收件人 
  NSArray *toRecipients = [NSArray arrayWithObject: @"first@example.com"]; 
  [mailUrl appendFormat:@"mailto:%@", [toRecipients componentsJoinedByString:@","]]; 
  //添加抄送 
  NSArray *ccRecipients = [NSArray arrayWithObjects:@"second@example.com", @"third@example.com", nil];  
  [mailUrl appendFormat:@"?cc=%@", [ccRecipients componentsJoinedByString:@","]]; 
  //添加密送 
  NSArray *bccRecipients = [NSArray arrayWithObjects:@"fourth@example.com", nil];  
  [mailUrl appendFormat:@"&bcc=%@", [bccRecipients componentsJoinedByString:@","]]; 
  //添加主题 
  [mailUrl appendString:@"&subject=my email"]; 
  //添加邮件内容 
  [mailUrl appendString:@"&body=<b>email</b> body!"]; 
  NSString* email = [mailUrl stringByAddingPercentEscapesUsingEncoding: NSUTF8StringEncoding];  
  [[UIApplication sharedApplication] openURL: [NSURL URLWithString:email]];  
}

2.MFMailComposeViewController

MFMailComposeViewController是在IOS3.0新增的一个接口,它在MessageUI.framework中。通过调用

MFMailComposeViewController,可以把邮件发送窗口集成到我们的应用里,发送邮件就不需要退出程序了。

MFMailComposeViewController的使用方法:

1.项目中引入MessageUI.framework;
2.在使用的文件中导入MFMailComposeViewController.h头文件;
3.实现MFMailComposeViewControllerDelegate,处理邮件发送事件;
4.调出邮件发送窗口前先使用MFMailComposeViewController里的“+ (BOOL)canSendMail”方法检查用户是否设置了邮件账户;
5.初始化MFMailComposeViewController,构造邮件体 

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// 
// ViewController.h 
// MailDemo 
// 
// Created by LUOYL on 12-4-4. 
// Copyright (c) 2012年 http://luoyl.info. All rights reserved. 
// 
 
#import <UIKit/UIKit.h> 
#import <MessageUI/MFMailComposeViewController.h> 
 
@interface ViewController : UIViewController<MFMailComposeViewControllerDelegate> 
 
@end
<br>
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#pragma mark - 在应用内发送邮件 
//激活邮件功能 
- (void)sendMailInApp 
  Class mailClass = (NSClassFromString(@"MFMailComposeViewController")); 
  if (!mailClass) { 
    [self alertWithMessage:@"当前系统版本不支持应用内发送邮件功能,您可以使用mailto方法代替"]; 
    return
  
  if (![mailClass canSendMail]) { 
    [self alertWithMessage:@"用户没有设置邮件账户"]; 
    return
  
  [self displayMailPicker]; 
 
//调出邮件发送窗口 
- (void)displayMailPicker 
  MFMailComposeViewController *mailPicker = [[MFMailComposeViewController alloc] init];  
  mailPicker.mailComposeDelegate = self;  
    
  //设置主题  
  [mailPicker setSubject: @"eMail主题"];  
  //添加收件人 
  NSArray *toRecipients = [NSArray arrayWithObject: @"first@example.com"]; 
  [mailPicker setToRecipients: toRecipients];  
  //添加抄送 
  NSArray *ccRecipients = [NSArray arrayWithObjects:@"second@example.com", @"third@example.com", nil];  
  [mailPicker setCcRecipients:ccRecipients];    
  //添加密送 
  NSArray *bccRecipients = [NSArray arrayWithObjects:@"fourth@example.com", nil];  
  [mailPicker setBccRecipients:bccRecipients];  
    
  // 添加一张图片  
  UIImage *addPic = [UIImage imageNamed: @"Icon@2x.png"];  
  NSData *imageData = UIImagePNGRepresentation(addPic);      // png   
  //关于mimeType:http://www.iana.org/assignments/media-types/index.html 
  [mailPicker addAttachmentData: imageData mimeType: @"" fileName: @"Icon.png"];  
  
  //添加一个pdf附件 
  NSString *file = [self fullBundlePathFromRelativePath:@"高质量C++编程指南.pdf"]; 
  NSData *pdf = [NSData dataWithContentsOfFile:file]; 
  [mailPicker addAttachmentData: pdf mimeType: @"" fileName: @"高质量C++编程指南.pdf"];  
 
  NSString *emailBody = @"<font color='red'>eMail</font> 正文";  
  [mailPicker setMessageBody:emailBody isHTML:YES];  
  [self presentModalViewController: mailPicker animated:YES];  
  [mailPicker release];  
 
#pragma mark - 实现 MFMailComposeViewControllerDelegate 
- (void)mailComposeController:(MFMailComposeViewController *)controller didFinishWithResult:(MFMailComposeResult)result error:(NSError *)error 
  //关闭邮件发送窗口 
  [self dismissModalViewControllerAnimated:YES]; 
  NSString *msg;  
  switch (result) {  
    case MFMailComposeResultCancelled:  
      msg = @"用户取消编辑邮件";  
      break;  
    case MFMailComposeResultSaved:  
      msg = @"用户成功保存邮件";  
      break;  
    case MFMailComposeResultSent:  
      msg = @"用户点击发送,将邮件放到队列中,还没发送";  
      break;  
    case MFMailComposeResultFailed:  
      msg = @"用户试图保存或者发送邮件失败";  
      break;  
    default:  
      msg = @""
      break;  
  }  
  [self alertWithMessage:msg]; 

原文链接:http://blog.csdn.net/u011374880/article/details/46708629

延伸 · 阅读

精彩推荐
  • IOSiOS常见的几个修饰词深入讲解

    iOS常见的几个修饰词深入讲解

    这篇文章主要给大家介绍了关于iOS常见的几个修饰词的相关资料,iOS修饰词包括assign、weak、strong、retain、copy、nonatomic、atomic、readonly、readwrite,文中通过示...

    郡王丶千夜7422021-05-10
  • IOSxcode8提交ipa失败无法构建版本问题的解决方案

    xcode8提交ipa失败无法构建版本问题的解决方案

    xcode升级到xcode8后发现构建不了新的版本。怎么解决呢?下面小编给大家带来了xcode8提交ipa失败无法构建版本问题的解决方案,非常不错,一起看看吧...

    Cinna丶7542021-02-03
  • IOSiOS10 Xcode8适配7个常见问题汇总

    iOS10 Xcode8适配7个常见问题汇总

    这篇文章主要为大家详细汇总了iOS10 Xcode8适配7个常见问题,具有一定的参考价值,感兴趣的小伙伴们可以参考一下...

    索马里猫10332021-02-01
  • IOS谈一谈iOS单例模式

    谈一谈iOS单例模式

    这篇文章主要和大家谈一谈iOS中的单例模式,单例模式是一种常用的软件设计模式,想要深入了解iOS单例模式的朋友可以参考一下...

    彭盛凇11872021-01-19
  • IOSiOS中时间与时间戳的相互转化实例代码

    iOS中时间与时间戳的相互转化实例代码

    这篇文章主要介绍了iOS中时间与时间戳的相互转化实例代码,非常具有实用价值,需要的朋友可以参考下。...

    张无忌!4812021-03-09
  • IOSiOS APP实现微信H5支付示例总结

    iOS APP实现微信H5支付示例总结

    这篇文章主要介绍了iOS APP实现微信H5支付示例总结,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下...

    一张小A11332021-06-01
  • IOSiOS逆向教程之logify跟踪方法的调用

    iOS逆向教程之logify跟踪方法的调用

    这篇文章主要给大家介绍了关于iOS逆向教程之logify跟踪方法调用的相关资料,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学...

    Mr.Guo11472021-04-28
  • IOSIOS网络请求之AFNetWorking 3.x 使用详情

    IOS网络请求之AFNetWorking 3.x 使用详情

    本篇文章主要介绍了IOS网络请求之AFNetWorking 3.x 使用详情,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧...

    总李写代码6892021-03-04