Reputation: 47344
I have an enterprise mobile device management system that enables the phone to connect to the enterprise network and send/receive enterprise mail. This service is rather unstable, and I'd like to know how it's stability can be tested, to see when the phone can and cannot send/receive mail.
Something tells me that this kind of activity would be impossible on a non-jailbroken iPhone, and most likely the MDM service provider would have to provide tools to check service integrity.
Can anyone confirm that there's no way to check if the native mail app can send/receive mail with the current configuration?
Thank you!
Upvotes: 2
Views: 1737
Reputation: 9030
Probably your best bet is to do something like this:
if ([MFMailComposeViewController canSendMail]){
//App can send mail
}
Upvotes: 13