导入
添加头文件
#import <MessageUI/MessageUI.h>
代理
MFMailComposeViewControllerDelegate
MFMailComposeViewController *picker = [[MFMailComposeViewController alloc] init];
picker.mailComposeDelegate = self;
[picker setSubject:@"邮件主题"];
[picker setMessageBody:@"邮件内容" isHTML:NO];
NSArray *toRecipients = [NSArray arrayWithObject:@"邮箱地址"];
[picker setToRecipients:toRecipients];