Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to take a picture and send it as an email attachment in iOS

Currently, I can set a button to take a picture, but I'm unsure how to pass this as an attachment for an email in the same view.
The view is for a quote and allows the user to enter data into a few fields then has a button to email said data.

like image 392
fmi Avatar asked Nov 20 '11 19:11

fmi


People also ask

How do I convert a picture to an email as an attachment?

Position your cursor where you want the image in your message. Select Insert > Pictures. Browse your computer or online file locations for the picture you want to insert. Select the picture, then select Insert.

How do I send a photo from my iPhone as an attachment in Outlook?

To attach an picture as an attachment to an email, I suggest you try these steps: select the picture on your iPhone > Share > Outlook. After performing these steps, the picture will be attached as an attachment to an newly created email in Outlook.


1 Answers

Maybe this link would satisfy your requirement for the second half of the question...

http://www.ericd.net/2009/04/sending-email-from-iphone-application.html

    UIImage *myImage = [UIImage imageNamed:@"mobiletuts-logo.png"];
    NSData *imageData = UIImagePNGRepresentation(myImage);
    [mailer addAttachmentData:imageData mimeType:@"image/png"   fileName:@"mobiletutsImage"];

Courtesy:

http://mobile.tutsplus.com/tutorials/iphone/mfmailcomposeviewcontroller/

like image 175
rohan-patel Avatar answered Oct 26 '22 23:10

rohan-patel