vote up 0 vote down star
1

How do I launch the iPhone Mail app (with a Photo attachment) from within my app? (Photo is a UIImage in my app).

flag

1 Answer

vote up 4 vote down check

MFMailComposeViewController is what you want, which was introduced with iPhone OS 3.0.

https://developer.apple.com/iphone/library/samplecode/MailComposer/index.html http://blog.mugunthkumar.com/coding/iphone-tutorial-in-app-email

This blog post also covers adding UIImage attachments:

http://howtomakeiphoneapps.com/2009/07/how-to-make-your-iphone-app-send-email-with-attachments/

link|flag
Source code helped, thanks. – RexOnRoids Aug 24 at 8:44
I studied the sample code from Apple. It uses the MFMailComposeViewController. But I'd like to directly use the mail app instead and load it with a photo (like the photo app does). How can I do this? – RexOnRoids Aug 24 at 9:02
The third link that I included shows how to attach a photo to the email. – andynormancx Aug 24 at 11:06
Using the MFMailComposeViewController does pop up the standard email sending screen the same way the Apple apps do when emailing something like a photo. – andynormancx Aug 24 at 11:08
Great, thanks again. – RexOnRoids Aug 25 at 2:53

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.