不接收使用MessageUI框架发送的电子邮件



我正在使用MessageUI框架发送电子邮件,但是当发送时我从未收到该电子邮件。

我正在导入#import <MessageUI/MessageUI.h>

然后是下面的代码

- (void)emailFile
{
if(![MFMailComposeViewController canSendMail]) {
    UIAlertView *cantSend = [[UIAlertView alloc] initWithTitle:@"Error" message:@"Device not configured to send email" delegate:self cancelButtonTitle:nil otherButtonTitles:@"OK", nil];
       [cantSend show];
    [cantSend release];
} else {
    MFMailComposeViewController *mailView = [[[MFMailComposeViewController alloc] init] autorelease];
    mailView.mailComposeDelegate = self;
    [mailView setToRecipients:[NSArray arrayWithObject:@"matthew.inman@cdl.co.uk"]];
    [mailView setSubject:@"Test"];
    [mailView setMessageBody:@"This is a text message" isHTML:NO];
    [self presentModalViewController:mailView animated:YES];
}
}

- (void)mailComposeController:(MFMailComposeViewController *)controller didFinishWithResult:(MFMailComposeResult)result error:(NSError *)error
{
if(error) {
    UIAlertView *errorView = [[UIAlertView alloc] initWithTitle:@"Mail Error" message:[error localizedDescription] delegate:self cancelButtonTitle:nil otherButtonTitles:@"OK", nil];
    [errorView show];
    [errorView release];
} else {
    switch (result) {
        case MFMailComposeResultSent:
            NSLog(@"Sent Mail");
            break;
        case MFMailComposeResultSaved: 
            NSLog(@"Mail Saved");
            break;
        case MFMailComposeResultCancelled:
            NSLog(@"Mail Cancelled");
            break;
        case MFMailComposeResultFailed:
            NSLog(@"Mail Failed");
            break;
        default:
            break;
    }
}
[controller dismissModalViewControllerAnimated:YES];
}

我在控制台中收到"已发送邮件"的消息,但我就像我说的那样,我从未收到我发送的电子邮件。

我已经浏览了苹果的文档,但找不到任何有帮助的东西,还有谁能帮助我吗?我做错什么了吗?

确保你是在设备上测试,电子邮件不会通过模拟器发送。

相关内容

最新更新