NSSharingService to send email and read email body
I am using NSSharingService to bring up an email compose window in the Mail app: NSSharingService* sharingService = [NSSharingService sharingServiceNamed:NSSharingServiceNameComposeEmail]; [sharingService setRecipients:@[@"test@blahblah.com"]]; [sharingService setSubject:@"Test"]; sharingService.delegate = self; It brings up the compose email window fine, and when I enter in some text and actually send the email, I even get a callback to the delegate: - (void)sharingService:(NSSharingService *)sharingService didShareItems:(NSArray *)items { NSLog(@"sharingService didShareItems - %@",