无需用户交互即可发送电子邮件

时间:2014-10-23 09:04:23

标签: ios objective-c iphone

我正在开发一款应用,可以在某些情况下自动向我发送电子邮件,但是 我无法自动发送电子邮件,因为消息编写器选择器出现,我需要按下发送按钮...

是否可以自动化压力"在SEND按钮上或Apple是否阻止此操作以避免发送垃圾邮件?

"完成"有哪些选项?

如果无法做到这一点,那么是否可以在不使用消息选择器的情况下发送电子邮件?

使用以下方式显示消息界面:

[self presentViewController:picker animated:YES completion:nil];

- (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];
}

1 个答案:

答案 0 :(得分:2)

如果没有MFMailComposeViewController和用户的明确互动,就无法从用户的邮件帐户发送电子邮件。