I created two buttons named supportweb and email, and under these buttons I wrote the code as:
- (void) supportweb
{
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://www.fitzgerlad.com"]];
}
- (void) email
{
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"support@fitzgerlad.com"]];
}
supportweb is opened normally, but email is not opened. What is the problem? Please help me. How can I solve this? Please post some code.
The mail url format is
mailto:support@fitzgerlad.com.But, consider using MFMailComposeViewController to send email directly in your app.