IOS开发中调用(发送)Email的方法

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

 

1.openURL

使用openURL调用系统邮箱客户端是我们在IOS3.0以下实现发邮件功能的主要手段。我们可以通过设置url里的相关参数来指定邮件的内容,不过其缺点很明显,这样的过程会导致程序暂时退出。下面是使用openURL来发邮件的一个小例子:
C代码   收藏代码
  1. #pragma mark - 使用系统邮件客户端发送邮件     
  2. -(void)launchMailApp     
  3. {       
  4.     NSMutableString *mailUrl = [[[NSMutableString alloc]init]autorelease];     
  5.     //添加收件人     
  6.     NSArray *toRecipients = [NSArray arrayWithObject: @"first@example.com"];     
  7.     [mailUrl appendFormat:@"mailto:%@", [toRecipients componentsJoinedByString:@","]];     
  8.     //添加抄送     
  9.     NSArray *ccRecipients = [NSArray arrayWithObjects:@"second@example.com", @"third@example.com", nil];       
  10.     [mailUrl appendFormat:@"?cc=%@", [ccRecipients componentsJoinedByString:@","]];     
  11.     //添加密送     
  12.     NSArray *bccRecipients = [NSArray arrayWithObjects:@"fourth@example.com", nil];       
  13.     [mailUrl appendFormat:@"&bcc=%@", [bccRecipients componentsJoinedByString:@","]];     
  14.     //添加主题     
  15.     [mailUrl appendString:@"&subject=my email"];     
  16.     //添加邮件内容     
  17.     [mailUrl appendString:@"&body=<b>email</b> body!"];     
  18.     NSString* email = [mailUrl stringByAddingPercentEscapesUsingEncoding: NSUTF8StringEncoding];       
  19.     [[UIApplication sharedApplication] openURL: [NSURL URLWithString:email]];       
  20. }    
  缺点很明显,这样的过程会导致程序暂时退出,即使在iOS 4.x支持多任务的情况下,这样的过程还是会让人觉得不是很方便。
 

2.MFMailComposeViewController

MFMailComposeViewController是在IOS3.0新增的一个接口,它在MessageUI.framework中。通过调用MFMailComposeViewController,可以把邮件发送窗口集成到我们的应用里,发送邮件就不需要退出程序了。MFMailComposeViewController的使用方法:
  • 1.项目中引入MessageUI.framework;
  • 2.在使用的文件中导入MFMailComposeViewController.h头文件;
  • 3.实现MFMailComposeViewControllerDelegate,处理邮件发送事件;
  • 4.调出邮件发送窗口前先使用MFMailComposeViewController里的“+ (BOOL)canSendMail”方法检查用户是否设置了邮件账户;
  • 5.初始化MFMailComposeViewController,构造邮件体

 

#pragma mark - 在应用内发送邮件
//激活邮件功能
-(void)contactUsWithEmail
{
    Class mailClass = (NSClassFromString(@"MFMailComposeViewController"));
    if (!mailClass) {
        NSLog(@"当前系统版本不支持应用内发送邮件功能,您可以使用mailto方法代替");
        return;
    }
    if (![mailClass canSendMail]) {
        NSLog(@"用户没有设置邮件账户!");
        return;
    }
    [self displayMailPicker];
}

//调出邮件发送窗口
- (void)displayMailPicker
{
    MFMailComposeViewController *mailPicker = [[MFMailComposeViewController alloc]init];
    mailPicker.mailComposeDelegate = self;
    //设置主题
    [mailPicker setSubject: @"智能体温计意见反馈"];
    //添加收件人
    NSArray *toRecipients = [NSArray arrayWithObject: @"1364421081@qq.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'>如果我们的产品有不完善的地方给你带来不便,我在此表示诚挚的歉意!请赶快把你的建议告诉我们吧。</font> /n  正文";
    [mailPicker setMessageBody:emailBody isHTML:YES];
    [self presentViewController:mailPicker animated:YES completion:nil];
}

#pragma mark - 实现 MFMailComposeViewControllerDelegate
- (void)mailComposeController:(MFMailComposeViewController *)controller didFinishWithResult:(MFMailComposeResult)result error:(NSError *)error
{
    //关闭邮件发送窗口
    [self dismissViewControllerAnimated:controller completion:nil];
    NSString *msg;
    switch (result) {
        case MFMailComposeResultCancelled:
            msg = @"用户取消编辑邮件";
            break;
        case MFMailComposeResultSaved:
            msg = @"用户成功保存邮件";
            break;
        case MFMailComposeResultSent:
            msg = @"用户点击发送,将邮件放到队列中,还没发送";
            break;
        case MFMailComposeResultFailed:
            msg = @"用户试图保存或者发送邮件失败";
            break;
        default:
            msg = @"";
            break;
    }
    [self alertWithTitle:@"邮箱操作提醒" Message:msg Animation:URBAlertAnimationFlipVertical];
}
-(void)alertWithTitle:(NSString *)title Message:(NSString *)msg  Animation:(URBAlertAnimation)animation
{
    URBAlertView *alertView = [[URBAlertView alloc]initWithTitle:title subtitle:msg];
    alertView.blurBackground = YES;
    [alertView addButtonWithTitle:@"取消"];
    [alertView addButtonWithTitle:@"确认"];
    [alertView setHandlerBlock:^(NSInteger buttonIndex, URBAlertView *alertView) {
        if (buttonIndex == 0) {
            //取消动作
        }else
        {
            //确认动作:解除绑定
            NSLog(@"button tapped: index=%li", (long)buttonIndex);
            
        }
        
        [alertView hideWithCompletionBlock:^{
            // stub
        }];
    }];
    
    [alertView showWithAnimation:URBAlertAnimationTumble];

}


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

 

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

 https://github.com/jetseven/skpsmtpmessage

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

Java代码   收藏代码
  1. SKPSMTPMessage *testMsg = [[SKPSMTPMessage alloc] init];  
  2.         testMsg.fromEmail = @"test@gmail.com";  
  3.         testMsg.toEmail =@"to@gmail.com";  
  4.         testMsg.relayHost = @"smtp.gmail.com";  
  5.         testMsg.requiresAuth = YES;  
  6.         testMsg.login = @"test@gmail.com";  
  7.         testMsg.pass = @"test";  
  8.         testMsg.subject = [NSString stringWithCString:"测试" encoding:NSUTF8StringEncoding];  
  9.         testMsg.bccEmail = @"bcc@gmail.com";  
  10.         testMsg.wantsSecure = YES; // smtp.gmail.com doesn't work without TLS!  
  11.    
  12.         // Only do this for self-signed certs!  
  13.         // testMsg.validateSSLChain = NO;  
  14.         testMsg.delegate = self;  
  15.    
  16. NSDictionary *plainPart = [NSDictionary   
  17. dictionaryWithObjectsAndKeys:@"text/plain",kSKPSMTPPartContentTypeKey,  
  18. [NSString stringWithCString:"测试正文" encoding:NSUTF8StringEncoding],  
  19. kSKPSMTPPartMessageKey,@"8bit",kSKPSMTPPartContentTransferEncodingKey,nil];  
  20.    
  21. NSString *vcfPath = [[NSBundle mainBundle] pathForResource:@"test" ofType:@"vcf"];  
  22. NSData *vcfData = [NSData dataWithContentsOfFile:vcfPath];  
  23.    
  24. NSDictionary *vcfPart = [NSDictionary dictionaryWithObjectsAndKeys: @"text/directory;\r\n\tx-unix-mode=0644;\r\n\tname=\"test.vcf\"",kSKPSMTPPartContentTypeKey,  
  25. @"attachment;\r\n\tfilename=\"test.vcf\"",kSKPSMTPPartContentDispositionKey,  
  26. [vcfData encodeBase64ForData],kSKPSMTPPartMessageKey,@"base64",kSKPSMTPPartContentTransferEncodingKey,nil];  
  27.  testMsg.parts = [NSArray arrayWithObjects:plainPart,vcfPart,nil];  
  28.  [testMsg send];  

 

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

Java代码   收藏代码
  1. -(void)messageSent:(SKPSMTPMessage *)message;  
  2. -(void)messageFailed:(SKPSMTPMessage *)message   
  3. error:(NSError *)error; 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值