MFMailComposeViewController *picker = [[MFMailComposeViewController alloc] init];
picker.mailComposeDelegate = self;
[picker setMessageBody:@"Invoice Report Pdf File" isHTML:NO];
NSMutableData *pdfData =[NSMutableData dataWithContentsOfFile:filePath];
[picker addAttachmentData:pdfData mimeType:@"application/pdf" fileName:self.pdfName];
Change mime type according my code, it will help you.
Then at some point in the future you’ll need to pass that
pdfDatato theMFMailComposeViewController.