I am using MFMailComposeViewController to send attachments (pdfs) from within the app. However I am not receiving the attachments when I test this on a device. Any idea what can be the problem?
- (void) emailDocument
{
MFMailComposeViewController *mailController = [[MFMailComposeViewController alloc] init];
NSData *data = [[NSData alloc] initWithContentsOfURL:pdfURL];
mailController.mailComposeDelegate = self;
[mailController setSubject:[self title]];
[mailController setMessageBody:@"Please find the attached documents." isHTML:YES];
[mailController addAttachmentData:data mimeType:@"application/pdf" fileName:@"document"];
[self presentModalViewController:mailController animated:YES];
}
try to understand this code,it helps u.
Thanks