iOS系统发送Email的方法汇总

一、 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的部分方法顺便提及:

//如果用户没有设置邮件账户,则会返回NO,你可以用根据返回值来决定是   使用MFMailComposeViewController  还是 mailto://的传统方法, 也或者,  你可以选择上文中提到的skpsmtpmessage来实现发送Email的功能。
+ (BOOL)canSendMail __OSX_AVAILABLE_STARTING(__MAC_NA,__IPHONE_3_0);
//NSData类型的attachment自然不必多说,关于mimeType需要一点说明,    官方文档里给出了一个链接http://www.iana.org/assignments/media-types/ ,    这里列出的所有的类型都应该支持。关于mimeType的用处,更多需要依靠搜索引擎了 =]
- (void)addAttachmentData:(NSData *)attachment mimeType:(NSString *)mimeType fileName:(NSString *)filename;

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

二、通过开源SMTP协议来实现发送Email

我们可以根据自己的UI设计需求来定制相应的视图以适应整体的设计。可以使用比较有名的开源SMTP协议来实现。

在SKPSMTPMessage类中,并没有对视图进行任何的要求,它提供的都是数据层级的处理,你之需要定义好相应的发送要求就可以实现邮件发送了。至于是以什么样的方式获取这些信息,就可以根据软件的需求来确定交互方式和视图样式了。

    SKPSMTPMessage *testMsg = [[SKPSMTPMessage alloc] init]; 		
    testMsg.fromEmail = @"test@gmail.com"; 		
    testMsg.toEmail =@"to@gmail.com"; 		
    testMsg.relayHost = @"smtp.gmail.com"; 		
    testMsg.requiresAuth = YES; 		
    testMsg.login = @"test@gmail.com"; 		
    testMsg.pass = @"test"; 		
    testMsg.subject = [NSString stringWithCString:"测试" encoding:NSUTF8StringEncoding]; 		
    testMsg.bccEmail = @"bcc@gmail.com"; 		
    testMsg.wantsSecure = YES; 
    // smtp.gmail.com doesn't work without TLS!   		
    // Only do this for self-signed certs! 		
    // testMsg.validateSSLChain = NO; 		
    testMsg.delegate = self;   
    NSDictionary *plainPart = [NSDictionary  dictionaryWithObjectsAndKeys:@"text/plain",kSKPSMTPPartContentTypeKey, [NSString stringWithCString:"测试正文" encoding:NSUTF8StringEncoding], kSKPSMTPPartMessageKey,@"8bit",kSKPSMTPPartContentTransferEncodingKey,nil];   
    NSString *vcfPath = [[NSBundle mainBundle] pathForResource:@"test" ofType:@"vcf"]; 
    NSData *vcfData = [NSData dataWithContentsOfFile:vcfPath];  
    NSDictionary *vcfPart = [NSDictionary dictionaryWithObjectsAndKeys: @"text/directory;\r\n\tx-unix-mode=0644;\r\n\tname=\"test.vcf\"",kSKPSMTPPartContentTypeKey, @"attachment;\r\n\tfilename=\"test.vcf\"",kSKPSMTPPartContentDispositionKey, [vcfData encodeBase64ForData],kSKPSMTPPartMessageKey,@"base64",kSKPSMTPPartContentTransferEncodingKey,nil];  
    testMsg.parts = [NSArray arrayWithObjects:plainPart,vcfPart,nil];  
    [testMsg send];


该类也提供了相应的Delegate方法来让你更好的获知发送的状态.

-(void)messageSent:(SKPSMTPMessage *)message; 
-(void)messageFailed:(SKPSMTPMessage *)message  error:(NSError *)error;


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值