nips
nips

Reputation: 1

MFMailComposerView attach images

how to attach images from iphone saved photo album to MFMailComposerView and send through mail...plese help me..is there any sample application source code available

Upvotes: 0

Views: 168

Answers (1)

Deepak Danduprolu
Deepak Danduprolu

Reputation: 44633

Say image is the image you want to attach.

NSData *attachmentData = UIImageJPEGRepresentation(image, 1.0);

...

MFMailComposeViewController *mailComposer = [[MFMailComposeViewController alloc] init];
...
[mailComposer addAttachmentData:attachmentData mimeType:@"image/jpeg" fileName:@"attachment.jpeg"];
...
// Push it on to the screen.

Upvotes: 1

Related Questions