In my app, using MFMailComposer I’m not able to send attachments to another mail address.
Those attachments are in a link.
I’m using this code:
NSData *textData = [NSData dataWithContentsOfFile:self.fileString];
[mailView addAttachmentData:textData mimeType:@"text/plain" fileName:self.fileString];
Try below code for sending attachment in email..
what you do in addAttachmentData method is replace self.fileString in fileName with other name like I have written.
let me know it is working or not.