How do you get the email addresses that the mail composer sent to was?
I tried looking at this delegate:
- (void)mailComposeController:(MFMailComposeViewController *)controller
didFinishWithResult:(MFMailComposeResult)result
error:(NSError *)error
{
}
but it seems that there’s no way to get the email addresses
You can’t. The interface is designed such that what the user enters is not visible to you.
If you tell us what you’re trying to accomplish, we may be able to suggest an alternate API or solution.