/ Published in: Objective C
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
-(void) sendEmail { NSURL* mailURL = [NSURL URLWithString: @"mailto:[email protected][email protected]&subject=My%20Subject%20Line&body=Hello%20Email!"]; [[UIApplication sharedApplication] openURL: mailURL]; }