The MFMailComposeViewController class provides a standard interface that manages the editing and sending of an email in iOS.

learn more… | top users | synonyms

2
votes
0answers
92 views

MFMailComposeViewController can not create attachment on iPad IOS5

it works on iPhone , but no attachment on iPad . is MFMailComposeViewController no support iPad IOS5?
2
votes
0answers
332 views

attachment csv file in MFMailComposeViewController

In my app i sending a file as csv format it's working fine if i open in "neo-office" but it's not opening properly in "MS-office". I am using below code to send csv file NSString *str_mail = ...
2
votes
0answers
110 views

Possible to minimise single-page attachments in Mail?

I have an iOS app which uses the locally-created Mail.app account to send emails with, and I am attaching a few PDF documents. I have found that if the document is one-page long, when I call ...
2
votes
0answers
302 views

MFMailComposerViewController Memory leak

In my app whenever i send email with an attachment. The MFMailComposer does not release the memory after sending the email. The size of the data that i am attaching is around 2-4 MB. How i can solve ...
1
vote
0answers
211 views

MFMailComposeViewController produces empty lines in front of image attachments

I use MFMailComposeViewController for creating eMails on iPhone. These mails includes text, a text-attachment and some image attachments. if ([MFMailComposeViewController canSendMail]) { ...
1
vote
0answers
16 views

Event handling from messages

Can we add an action to the content/smiley in messages(sms) ,which is sent from an app. *My doubt is:*How to or from where we can handle the events/action in messages
1
vote
0answers
72 views

MFMailComposeViewController does not find local css file

I create a html string that I send via MFMailComposeViewController as an email. I have includes 2 css references, one local css and one server css to provide both css access for offline ipads and for ...
1
vote
0answers
52 views

Curious text alignment with iOS MFMailComposeViewController

I have an app that can send a message (containing a diagnostic dump). The MFMailComposeViewController appears fine on the simulator, but looks odd on a "old" iPad (haven't tried it on newer). The ...
1
vote
0answers
239 views

iOS6: MFMailComposeViewController sporadically produces array mutation error

I am sporadically seeing the following error when I launch an instance of MFMailComposeViewController on iOS 6 systems. Everything functions fine on iOS 5, it only happens on iOS 6: * Terminating ...
1
vote
0answers
201 views

Get Content ID from MFMailComposeViewController

I was searching how to add image to message body and found a lot of questions that it's impossible do it using MIME and add image to message body using standart MFMailComposeViewController. Here: ...
1
vote
0answers
436 views

MFMailComposeViewController customize send button

I need to be able to change both the background color and the title color for the UIBarButtonItem "Send" on the MFMailComposeViewController. Changing the customView property force it no longer to ...
1
vote
0answers
168 views

MFmail composer sent junk mail with

I am sending mail using MFMailComposeViewController and if i am sending message body with HTML tag it will send as a junk mail otherwise it will be sent as a normal mail.... Any idea what I am doing ...
1
vote
0answers
164 views

Centering Picture In MFMailComposeViewController (iOS)

Is it possible to center an image when attaching it to the MFMailComposeViewController in XCode? Here's the code I'm using: NSString *path = [[NSBundle mainBundle] pathForResource:@"millersicon" ...
1
vote
0answers
1k views

MFMailComposeViewController send and cancel buttons are not working if the view has custom UINavigationBar

Hi, As in the above image, My viewcontroller class has a customnavigationbar, when I am trying to compose an email using MFMailComposeViewController, the navigationbar of ...
1
vote
0answers
499 views

MFMailComposeViewController - load images inside the html

I created an MFMailComposeViewController. I attached some files using addAttachmentData:mimeType:fileName:. The files are attached successfully. The HTML in the message body has the following code: ...
1
vote
0answers
478 views

Force iPhone to send an email with content type 'text/html'

I am successfully sending an email from my iPhone application using the available MFMailComposeViewController. The message's body is HTML, and it is showing up as such in all clients except Gmail. ...
1
vote
0answers
663 views

CSV and send email: DA|Could not open the lock file at /tmp/DAAccountsLoading.lock. We'll load the accounts anyway, but bad things may happen

I'm trying to create a csv and send it via email. I create an NSMutableArray of NSArray (called csvArray), use the Dave DeLong's CHCSVParser with: [csvArray writeToCSVFile:filenameCSV ...
1
vote
0answers
354 views

MFMailComposeViewController iOS 4.0

When sending an email with a picture attachment in iOS4, the last step asks if you want to reduce the message size by scaling the image. Is it possible to force the app to send the highest resolution ...
0
votes
0answers
5 views

Sending base64 UIImages comes out empty

I'm trying to send an HTML email with embedded UIImages. This is my code: MFMailComposeViewController *mailComposer = [[MFMailComposeViewController alloc] init]; mailComposer.mailComposeDelegate = ...
0
votes
0answers
33 views

iOS - get user's email addresses added in Mail, Contacts, Calendars

Is there a way to find out the email addresses added by user in Mail, Contacts, Calendars and show them in a picker view for the user to select. I tried using MFMailComposeViewController, but once ...
0
votes
0answers
11 views

something about mfmailcomposeviewcontroller

when i press the button 'send' it works fine. and when i press the button 'cancel' ,the action sheet did not come out and the screen became dark. here's the part of codes: ...
0
votes
0answers
13 views

MFMailComposeViewController lose ability to respond to touch

I have this piece of code if ([MFMailComposeViewController canSendMail]) { MFMailComposeViewController *mailController = [[MFMailComposeViewController alloc] init]; ...
0
votes
0answers
12 views

How to avoid iMessage in MFMessageViewController

I want to stop iMessage service while sending text sms using MFMessageComposeViewController
0
votes
0answers
186 views

MFMailComposeViewController not working on device , instance printed on console output is <register sp is not available>

I have created this Utility class called MailComposeViewController i am cllling this class from other view controller, mail Composer working properly on simulater but is is crashing on device. This ...
0
votes
0answers
61 views

Displaying pdf document in MFMailComposeViewController

I've read posts that say the the MFMailComposeViewController should display your attached pdf if its a 1 page document but for some reason my PDF is always showing up as just an icon. I want it to ...
0
votes
0answers
91 views

MFMailComposeViewController sends email without attachment

I have made a pdf file within code, and I am sending it as an attachment to an email address. When it shows the MFMailComposeController, the attachment is there in the email, but it is not attached ...
0
votes
0answers
66 views

UI toolbar button breaking mail composer, but works fine with regular button?

TL;DR: mailing method works fine with regular buttons, but when I try and call it from a toolbar button, it only inserts the subject and none of the other content. I am very very new to Obj-C, X-Code ...
0
votes
0answers
38 views

Remove MFMailComposeViewController padding around HTML email?

When creating a MFMailComposeViewController and setting the message body to be HTML, I end up with margins around the provided markup. It looks as though MFMailComposeViewController is taking the HTML ...
0
votes
0answers
35 views

How to use addAttachmentData in MFMailComposer

This might seem like a simple question, but my app has images in it and I want to add them as attachments to emails if they're being used, but not add the attachment if they are not. I have no problem ...
0
votes
0answers
20 views

importing an audio email attachment into an app

In my app I have a group of images of family members. Each family member can have an audio file associated with it. It is easy enough within the app to capture the audio and link to the image. I ...
0
votes
0answers
71 views

MFMailComposeViewController crashing at setMessageBody

This code crashes at setMessageBody. Any help appreciated. if ([MFMailComposeViewController canSendMail]) { MFMailComposeViewController *mailer = [[MFMailComposeViewController alloc] ...
0
votes
0answers
123 views

Attach multiple photos to mail using camera roll ios

I want to attach multiple photos to send one mail. I am using https://github.com/elc/ELCImagePickerController to read multiple photos from camera roll Now I want to send the mail, but with this ...
0
votes
0answers
48 views

MFMailComposeViewController with Localization

In my app I have some xib files which are working with localization. I did not create a localization for every xib files, sometimes I only load the correct string in the .m file instead. At least, ...
0
votes
0answers
362 views

Unbalanced calls to begin/end appearance transitions for <UINavigationController:

I am trying to send mail trough Xcode. Here is my code Code Class mailClass = (NSClassFromString(@"MFMailComposeViewController")); if (mailClass != nil) { BOOL var=[mailClass ...
0
votes
0answers
58 views

UIKeyboard's origin gets set to “inf” after MFMailComposeViewController is dismissed

I've got a view with two subviews in it: a UITextView and a UIButton. The button presents an MFMailComposeViewController. If I tap on UITextView after presenting and dismissing the ...
0
votes
0answers
113 views

my UIWebview doesn't function after MFMailcomposeviewcontroller dismissed

I have a Uiwebview which displays pdf documents downloaded from the web. this works fine, but having implemented email functionality with the following code, i find the Uiwebview stops working when i ...
0
votes
0answers
88 views

Document icon for attachement visible in MFMailComposeViewController in iOS6 but not iOS5

I attach my own document type to mail using addAttachmentData. On iOS6 the MFMailComposeViewController uses a document icon (large_document.png) that I created to represent the attachment. On iOS5 ...
0
votes
0answers
102 views

MFMailComposeViewController Keyboard Issue - iPad

My iPad app is using MFMailComposeViewController for email function. This app only support for landscape orientation. Some times when I tap on the 'to' textfield, the keyboard does not appear ...
0
votes
0answers
33 views

Sending an ics file

Im trying to send an ics file from my iPhone app through the MFMailComposeViewController. The file received can't be opened. It always crashes. I created a ics file from my mac, opened as text and ...
0
votes
0answers
33 views

How to attach “bar code” and “QA code” through mail in mfmailcomposer in ios

I have one Bar code as an Image and QA Code in Web View.these are generated depends on user input data(id and name). Now I want to send these two things through mail using Mfmailcomposer. How to ...
0
votes
0answers
65 views

Keyboard wrongly positioned after displaying MFMailComposeView

I have a problem with an UIView inside a subclassed navigation controller. There is a contact form on a UIView which is pushed on a UINavigationController. Normally there is no problem, everything is ...
0
votes
0answers
181 views

MonoTouch MFMailComposeViewController: AddAttachmentData pdf mimetype is not being set. Emailed file does not have extension or mimetype

I have a PDF file on my iPad and I am trying to attach it to an email in my Monotouch application. The email sends fine but the attachment (through Gmail, desktop) looks like a broken image and ...
0
votes
0answers
237 views

MFMailComposeViewController timing out on canSendMail?

So the subject is mostly self explanatory. When I step into if ([MFMailComposeViewController canSendMail] && [sender.titleLabel.text isEqualToString:@"Contact Support"]) [self ...
0
votes
0answers
70 views

NSCoding serialization, email and decoding

I've problem with NSCoding. Here is what I'm trying to achieve: I want to serialize class using nscoding, sent it as an attachment by email and unserialize it on other device. Serializing seems to be ...
0
votes
0answers
99 views

Resetting MFMailComposeViewController and dismissing to another ViewController

I have an application that is using a TabBar with three tabs. Home, Help and Feedback. I currently have it set up that when the user touches the "Feedback" tab the MFMailComposeViewController ...
0
votes
0answers
62 views

Why would setting the frame of an MFMailComposeViewController negate the 'To' and 'Subject' setters?

The following code behaves properly on all devices and the simulator. But if I uncomment the frame setter, then the setToRecipients and setSubject calls don't seem to have an effect, because the data ...
0
votes
0answers
120 views

Send Email Using MailComposer in Unity for iPhone

I am new bee in Unity and building little app in unity and i want to send Email using MailComposer in iPhone, I don't know how to accomplish this task. Thanks in Advance.
0
votes
0answers
142 views

Trying to Use MFMailComposeViewController From Within a Modal View

I've successfully implemented a modal view controller from my map based app that shows an options panel below the map using a partial curl transition. From here, I'd like to implement a button that ...
0
votes
0answers
112 views

MFMailComposeViewController keyboard dismiss by sliding

How can I dismiss keyboard in MFMailComposeViewController like it is done in imessage, by sliding it down?
0
votes
0answers
169 views

ARC and Strong/Weak pointers with MFMailComposeViewController

I put a sendMail button in my app. And this is the code assigned to it: - (IBAction)mailTo { if ([MFMailComposeViewController canSendMail]) { MFMailComposeViewController *mailer = ...

1 2 3