我有一个非常简单的应用来测试发送电子邮件,但电子邮件永远不会到来。我在应用程序中包含了MessageUI框架,并实现了MFMailComposeViewControllerDelegate。应用程序中的两个方法如下:
- (IBAction)showEmail:(id)sender
{
// Email Subject
NSString *emailTitle = @"Test Email";
// Email Content
NSString *messageBody = @"iOS programming is so fun!";
// To address
NSArray *toRecipents = [NSArray arrayWithObject:@"email@address.com"];
MFMailComposeViewController *mc = [[MFMailComposeViewController alloc] init];
mc.mailComposeDelegate = self;
[mc setSubject:emailTitle];
[mc setMessageBody:messageBody isHTML:NO];
[mc setToRecipients:toRecipents];
// Present mail view controller on screen
[self presentViewController:mc animated:YES completion:NULL];
}
和委托方法:
- (void) mailComposeController:(MFMailComposeViewController *)controller didFinishWithResult:(MFMailComposeResult)result error:(NSError *)error
{
switch (result)
{
case MFMailComposeResultCancelled:
NSLog(@"Mail cancelled");
break;
case MFMailComposeResultSaved:
NSLog(@"Mail saved");
break;
case MFMailComposeResultSent:
NSLog(@"Mail sent");
break;
case MFMailComposeResultFailed:
NSLog(@"Mail sent failure: %@", [error localizedDescription]);
break;
default:
break;
}
// Close the Mail Interface
[self dismissViewControllerAnimated:YES completion:NULL];
}
当我在我的应用程序中按下电子邮件按钮时,第一种方法可以正常工作,当我单击显示的发送按钮时,日志中会显示“已发送邮件”消息。电子邮件根本就没有到达。
除了电子邮件从未到达目的地之外,所有内容似乎都像广告一样有效。
我在iPad上运行,而不是在模拟器中,我有一个良好的网络连接。
我错过了什么?
答案 0 :(得分:1)
显然这是iPad本身的电子邮件配置问题。重启设备后,上面的代码完美无缺。我非常讨厌这种问题。
答案 1 :(得分:0)
使用canSendMail
方法。
使用以下代码检查是否设置了设备邮件配置。否则你的应用程序将崩溃。
if ([MFMailComposeViewController canSendMail])
{
// Create and show the MailComposeViewController
}
else
{
// Show No mail account set up on device.
}