2

Can you please let me know in xcode how to check if the Mail setup is done? Ex : If Device A has Mail(Exchange) setup then it should return YES anf if not then NO.

So can we access this mail settings via code?If yes then Please let me know the way.

IamAnil
  • 496
  • 5
  • 19

1 Answers1

10
if ([MFMailComposeViewController canSendMail]) {
    [self doStuff];
}
Davi Stuart
  • 269
  • 3
  • 16
  • Hi Thanks for that. But can you also let me know is there any way to check if the outlook(Exchange) is integrated or synced? Ex:Like we have different mail services gmail,outlook , yahoo etc.. So I want to check if the mail service is outlook ?So can we? – IamAnil Sep 26 '13 at 07:38
  • I'm afraid not. iOS that handle this part of logic. – Davi Stuart Sep 26 '13 at 13:14