How to add web view data and image view data to Mfmailcomposer view controller in ios. for sending mail to others.
You can use
for (UIImage *yourImage in YourImageArray )
{
NSData *imgData = UIImageJPEGRepresentation(yourImage, 0.5);
[mfMailComposer addAttachmentData:imgData mimeType:@"image/jpeg" fileName:[NSString
stringWithFormat:@"a.jpg"]];
}