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

2020-01-18 21:23:09王冬梅

iOS系统框架提供的两种发送Email的方法      

1、使用openURL来实现发邮件的功能:   


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

缺点很明显,这样的过程会导致程序暂时退出,即使在iOS 4.x支持多任务的情况下,这样的过程还是会让人觉得不是很便。   

2、使用MFMailComposeViewController来实现发邮件的功能,它在MessageUI.framework中,你需要在项目中加入该框架,并在使用的文件中导入MFMailComposeViewController.h头文件。 


#import <MessageUI/MFMailComposeViewController.h>; 
 
MFMailComposeViewController* controller = [[MFMailComposeViewController alloc] init]; 
controller.mailComposeDelegate = self; 
[controller setSubject:@"My Subject"]; 
[controller setMessageBody:@"Hello there." isHTML:NO]; 
[self presentModalViewController:controller animated:YES]; 
[controller release]; 
//使用该方法实现发送Email是最常规的方法,该方法有相应的MFMailComposeViewControllerDelegate事件: 
 
- (void)mailComposeController:(MFMailComposeViewController*)controller 
   didFinishWithResult:(MFMailComposeResult)result 
      error:(NSError*)error; 
{ 
 if (result == MFMailComposeResultSent) { 
 NSLog(@"It's away!"); 
 } 
 [self dismissModalViewControllerAnimated:YES]; 
} 
//有一些相关的数据结构的定义在头文件中都有具体的描述: 
 
enum MFMailComposeResult { 
 MFMailComposeResultCancelled,//用户取消编辑邮件 
 MFMailComposeResultSaved,//用户成功保存邮件 
 MFMailComposeResultSent,//用户点击发送,将邮件放到队列中 
 MFMailComposeResultFailed//用户试图保存或者发送邮件失败 
}; 
typedef enum MFMailComposeResult MFMailComposeResult; // iOS3.0以上有效 
//在头文件中MFMailComposeViewController的部分方法顺便提及: 
 
+ (BOOL)canSendMail __OSX_AVAILABLE_STARTING(__MAC_NA,__IPHONE_3_0); 
//如果用户没有设置邮件账户,则会返回NO,你可以用根据返回值来决定是使用MFMailComposeViewController 还是 mailto://的传统方法,也或者,你可以选择上文中提到的skpsmtpmessage来实现发送Email的功能。 
- (void)addAttachmentData:(NSData *)attachment mimeType:(NSString *)mimeType fileName:(NSString *)filename; 
//NSData类型的attachment自然不必多说,关于mimeType需要一点说明,官方文档里给出了一个链接http://www.easck.com/assignments/media-types/ ,这里列出的所有的类型都应该支持。关于mimeType的用处,更多需要依靠搜索引擎了 =] 

第二种方法的劣势也很明显,iOS系统替我们提供了一个mail中的UI,而我们却完全无法对齐进行订制,这会让那些定制化成自己风格的App望而却步,因为这样使用的话无疑太突兀了。