How to get the to, from, cc and bcc fields from mail composer in a callback for iPhone?

615 Views Asked by At

Does anyone know if its possible and how to get the TO, FROM, CC, and BCC fields from a mail composer in a callback for the iPhone?

1

There are 1 best solutions below

1
On

Using MFMailComposer.

Cannot be done. The only delegate that you find for this is

MFMailComposeViewControllerDelegate

mailComposeController:didFinishWithResult:error:

You can set it to some predefined values for once the user enters the MailComposer

By setting setToRecipients: and setCcRecipients:

But these settings are for BEFORE you give the user the control. After that you only get the above.