Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When I attach files to a message using an MFMailComposeViewController, the data is attached before the signature, This signature connected with separate file .txt. Is it possible to display the attachments AFTER the signature?

share|improve this question

1 Answer

up vote 2 down vote accepted

if you are sending image data or image file (it is not clear from your description)change it according to the type of file you are sending in the button action UIImage *imageName =[UIImage imageNamed:@"splash_sml.png"]; IMgdata = UIImagePNGRepresentation(imageName);

and in the displayComposerSheet method add this

[picker addAttachmentData:IMgdata
                 mimeType:@"image/png"
                 fileName:@"content-id"];
share|improve this answer
Let me explain what is problem. I am sending a pdf file as an attachment by mail. At the receiver end he will get two file first one is pdf and other one is ATT00001.txt file(which only contain text "Sent from my iphone") . I want to remove this .txt file.How can I do this. – Saurav Sinha Jun 21 '12 at 8:00
that we need to do in the phone settings i think reffer to this stackoverflow.com/questions/1477241/… – hacker Jun 21 '12 at 8:41
Thanks for reply. I am still searching How can I remove ATT00001.txt file? – Saurav Sinha Jun 21 '12 at 9:07

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.