up vote 0 down vote favorite
3
share [g+] share [fb]

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

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

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|improve this answer
Source code helped, thanks. – RexOnRoids Aug 24 '09 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 '09 at 9:02
The third link that I included shows how to attach a photo to the email. – andynormancx Aug 24 '09 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 '09 at 11:08
Great, thanks again. – RexOnRoids Aug 25 '09 at 2:53
feedback

Your Answer

 
or
required, but never shown

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