+4  A: 

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/

andynormancx
Source code helped, thanks.
RexOnRoids
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
The third link that I included shows how to attach a photo to the email.
andynormancx
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
Great, thanks again.
RexOnRoids