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];