I used the MessageUI framework to send the mail with attachment from my application. But i got the following error,
2009-09-07 19:52:23.483
use this for attach image in a mail, tested in ios 4,5,6
MFMailComposeViewController *mailer = [[MFMailComposeViewController alloc] init];
UIImage *myImage = [UIImage imageNamed:@"image.png"];
NSData *imageData = UIImagePNGRepresentation(myImage);
[mailer addAttachmentData:imageData mimeType:@"image/png" fileName:@"image"];