Reputation: 1
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
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