I am trying to send the user to the mail app from my native app. I would like the embed a tag into the body of the message. I know this is possible because the 'LOL Cats' app does it. I have been trying without success:
NSString *url1 = [NSString stringWithFormat:@"mailto:[email protected]?subject=Check%20Out%20This%20Faux%20Screen&body=<img%20src=\"http://www.sample.com/FauxFoneServer/screenShot/getScreenByID?cur=%@\"/>The%20awesome%20person%20who%20sent%20you%20this%20email%20thinks%20you%20should%20visit%20http://www.fauxscreen.com"
,[ScreenShotsAppDelegate sharedDelegate].viewController.curImage.imageID];
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:url1]];