I've got my iOS app sending out emails, where it generates the email form ready for the user to send using MFMailComposeViewControllerDelegate
. Now I'm just wondering if we can hide the CC/Bcc
field and if we can choose not to include the users signature. I've looked around and not found anything in the API - am I barking up a non existant tree?
You are indeed barking up a non-existent tree.
You can, however:
Implement your own mail composer view (and probably your own mail sender code);
Look for an API that can help you with implementing that;
Try the private API calls (and Apple won't probably accept your app);