附上PDF/Doc文件和我的邮件

New*_*der 3 email iphone xcode email-attachments ios

我在线生成了pdf文件.在看pdf时,我想通过邮件发送该pdf,并自动附上该pdf.我使用了很多代码,但是对于单个pdf.can一切正常.任何人都可以帮助我.

Gyp*_*psa 9

试试这个,

if([MFMailComposeViewController canSendMail]){      

    MFMailComposeViewController *mail=[[MFMailComposeViewController alloc]init];
    mail.mailComposeDelegate=self;
    [mail setSubject:@"Email with attached pdf"];   
    NSString *newFilePath = @"get path where the pdf reside";

    NSData * pdfData = [NSData dataWithContentsOfFile:newFilePath];
[mail addAttachmentData:pdfData mimeType:@"application/pdf" fileName:@"yourpdfname.pdf"];
    NSString * body = @"";
    [mail setMessageBody:body isHTML:NO];
    [self presentModalViewController:mail animated:YES];
    [mail release];         
}
else
{
    //NSLog(@"Message cannot be sent");
}
Run Code Online (Sandbox Code Playgroud)