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.
if ([MFMailComposeViewController canSendMail]) {
[self doStuff];
}