Those response are outdated Mac OS X 10.8 and more you should use NSSharingService
NSArray *shareItems=@[body,imageA,imageB];
NSSharingService *service = [NSSharingService sharingServiceNamed:NSSharingServiceNameComposeEmail];
service.delegate = self;
service.recipients=@[@"[email protected]"];
service.subject= [ NSString stringWithFormat:@"%@ %@",NSLocalizedString(@"SLYRunner console",nil),currentDate];
[service performWithItems:shareItems];
The sharing service documentation page
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…