Application is sending email by using MFMailComposeViewController, everything works just fine. However after sending email, the recipient address needs to be stored for further processing. As far as I can tell, there is no API for this.
How do I get the email address where message was sent to?
- Should I subclass MFMailComposeViewController and override something? What would that be?
- Could I find email address by looking at MFMailComposeViewController view hierarchy? What would I be looking for there?
Any other ideas?