How to show the mail setup page programmatically?
In my application, I offered the user the possibility of feedback. By selecting the feedback button, I check if there is any mail account on the device or not. This is done with the following check:
if ([MFMailComposeViewController canSendMail]) { // Actions to send mail } else { //Actions to show an error message by UIAlertView }
A warning message will look like this:

If the user clicked OK in this UIAlertView , I want to go to the mail settings page available in the settings menu. That is, I want to show the following page:

Is it possible to make this navigation programmatically?
Rajkanth
source share