to activate mail application which is in iphone like safari,Maps(built in apps) through iphone SDK? but i have seen in stack overflow like MailComposerViewController in apple samples. they are sending email within iphone application project.but i want to quit project and also to enable built in email application which is in iphone ..?anyhelp? i have done like this..have i to do add any frame works..?
- (IBAction)ddd:(id)sender { NSString *_recipient = @"[email protected]"; NSURL *_mailURL = [NSURL URLWithString:[NSString stringWithFormat:@"mailto:%@?subject=My Subject", _recipient]]; [[UIApplication sharedApplication] openURL:_mailURL];
}