2

存在しないアドレス ("hello" など) に電子メールを送信しようとすると、MFMail Composer は MFMailComposeResultFailed を返す必要があると思いますが、これは発生せず、メッセージは正しく送信されているようです (明らかに、送信されません)。「メール」でも同じことを試しましたが、この場合、「メール」はメッセージの送信中にエラーが発生したと答えますが、アプリで同じことをしてもエラーはありません。どうすればこれを修正できますか?

これは、メール画面に入ったときに使用するコードです。

if ([MFMailComposeViewController canSendMail]) {
    MFMailComposeViewController *mailer = [[MFMailComposeViewController alloc]init];
    mailer.mailComposeDelegate = self;
    [mailer setSubject:@"Notification"];
    User *user = [user_array objectAtIndex:0];
      NSArray *toRecipients = [NSArray arrayWithObjects:user.eMail, nil];
      [mailer setToRecipients:toRecipients];

    [mailer setMessageBody:self.label1.text isHTML:NO];
    [self presentViewController:mailer animated:YES completion:nil];
    [mailer release];
}
else
{
    UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Failure"
                                                    message:@"Your device doesn't support the composer sheet"
                                                   delegate:nil
                                          cancelButtonTitle:@"OK"
                                          otherButtonTitles: nil];
    [alert show];
    [alert release];
}

}

これはレスポンダーのコードです。

-(void)mailComposeController:(MFMailComposeViewController *)controller didFinishWithResult:(MFMailComposeResult)result error:(NSError *)error {
NSString *string = @"";
switch (result)
{
    case MFMailComposeResultCancelled:
        string = @"cancelled";
        NSLog(@"Mail cancelled: you cancelled the operation and no email message was queued.");
        break;
    case MFMailComposeResultSaved:
        NSLog(@"Mail saved: you saved the email message in the drafts folder.");
        break;
    case MFMailComposeResultSent:
        string = @"sent";
        NSLog(@"Mail send: the email message is queued in the outbox. It is ready to send.");
        break;
    case MFMailComposeResultFailed:
        NSLog(@"Mail failed: the email message was not saved or queued, possibly due to an error.");
        break;
    default:
        NSLog(@"Mail not sent.");
        break;
}
// Remove the mail view
int abc = MFMailComposeErrorCodeSendFailed;
NSLog(@"ERROR LOG %i", abc);
[self dismissViewControllerAnimated:YES completion:nil];
if ([string isEqualToString:@"cancelled"]) {
    ViewController *second = [self.storyboard instantiateViewControllerWithIdentifier:@"Notif_detail"];
    [second setString1:self.string1];
    [second setString2:self.string2];
    [second setString3:self.string3];
    [second setString4:self.string4];
    [self.navigationController pushViewController:second animated:YES];
}
else if ([string isEqualToString:@"sent"]){

    ViewController *second = [self.storyboard instantiateViewControllerWithIdentifier:@"View"];
   [self.navigationController pushViewController:second animated:YES];
}

}

前もって感謝します!

4

1 に答える 1

2

didFinishWithResultメッセージがキューに入れられて送信されようとしているため、トリガーされたときに実際にはエラーはないと思います。メッセージが配信されていないため、後でメール サーバー (smtp コード) から応答を取得した時点でエラーが発生します。

于 2013-03-11T16:13:19.273 に答える