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

learn more… | top users | synonyms

1
vote
1answer
40 views

MFMailComposeViewController only presented after second tap

I want to present a MFMailComposeViewController from a modal view controller. Basically this method works, but it does not work reliably: -(void)sendMailTapped:(id)sender{ [self ...
0
votes
0answers
3 views

Unknown mimetype MFMailComposerViewController

In my application a document file is downloading from the server and it is attaching to the MFMailcomposeViewOntroller but the document may be .pdf/.doc/.docx/.txt/.excel etc my problem is how to set ...
0
votes
1answer
21 views

Why won't MFMailComposeViewController dismiss during in-app email?

I am working on an iPad app which creates a PDF which the user then emails in from the app. I have been able to successfully setup the email to attach the PDF, but I cannot get the ...
0
votes
0answers
8 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
1answer
18 views

How to send data to selected mailId without using MFMailcomposer in ios

I want to send a array data through mail.I know Its possible through MFMailcomposerViewController.But As per my requirement without using MFMailcomposerViewController how it is Possible? Please ...
0
votes
1answer
54 views

Not receiving e-mail sent by an iPad app?

I have the following problem: I am trying to attach a file to mail and send it via the mail form in my iPad app. I think everything goes well, the log output says the mail is sent, but I am not ...
0
votes
4answers
26 views

Disable/Enable Send button in mailComposeController

How to disable/enable the send button in mailComposeController. I want disable/enable the send button by using through programmatically.Is it passable? Can any one help me. Thank you...
1
vote
3answers
48 views

sending multiple texts and images to email body

I am sending email through my app using setMessageBody i can set body to my mail but my requirement is i want send multiple images and text Using addAttachmentData twice i can send two images but ...
0
votes
2answers
19 views

Modal View's toolbar is obscured. MFMailComposeViewController

I am trying to bring up an Email Window in my application, however the top toolbar that is suppose to have Cancel and Send is being obscured by the navigation controller. I believe the reason is ...
0
votes
1answer
23 views

Customize the MFmailcomposer and add dropdown for groups in IOS

i had to add the dropdownlist in MFMailcomposer are the before subject field or after subject field. such that the dropdown contain the groups. If user select the particular group.it add the specific ...
0
votes
1answer
25 views

Sending a mail without using MFMailComposeViewController

I'm trying to create a contact us form and the given feedback should have to send through a configured mail address.But my main concern is sending the feedback without using ...
0
votes
1answer
24 views

Am I creating a retain cycle between UIViewController and a custom object?

In a project using ARC, I have a UIViewController that is handling too many concerns, so I'm looking to split things up. One obvious thing for me to take out is a method that formats and sends an ...
0
votes
0answers
30 views

MFMailComposeViewController can cancel but nothing else is editable [duplicate]

I use the following code to launch the email composer. but nothing is editable on the this view controller though I can dismiss it using "Cancel" button. the application is a storyboard based ...
0
votes
1answer
25 views

MFMailComposeViewController mail reciepient limit

I am creating an ios application,in which I have to more than 1000 mails from the device.I am using the MFMailComposeViewController. My doubt is Is there any limit for the recipient number? Is that ...
0
votes
0answers
8 views

MFMailComposeViewController lose ability to respond to touch

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

Questions about the “share” popover in Photos app (and other apps)

So, if you share a photo in the Photos app, it pops open this widget: This looks like a standard UIPopoverController with some UIButtons. My question is: Is this a system resource as one unit? I ...
0
votes
0answers
10 views

How to avoid iMessage in MFMessageViewController

I want to stop iMessage service while sending text sms using MFMessageComposeViewController
1
vote
1answer
23 views

Memory Leaks while using MFMailComposer

I am trying to send a CSV file through MfMail Composer.Everything works fine but there are lot leaks while using Instruments.I am not able trace out where I went wrong.Here is my code. -(NSData ...
0
votes
1answer
44 views

MFMailComposeViewController confusion

I recently learned how to implement an email in an iOS app, and I am confused on what this means. I have attached the errors, and the code as well. What I am trying to do is have the user enter ...
0
votes
1answer
29 views

MFMailComposeViewController crash when pressing “Delete Draft”

I have a button that call a MFMailComposeViewController. Sometimes, when I click "delete draft", the app crashes but sometimes it correctly dismiss the view. I can' understand why. Here is my code: - ...
0
votes
1answer
116 views

Custom Mail Composer View Controller for iOS

I want to have a mail composer view in my app but with a few extra fields and stuff. Since the original view controller Apple provides, MFMailComposeViewController doesn't allow any way to customize ...
0
votes
0answers
109 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
57 views

iOS - changing cancel button image in a MFMailComposeViewController instance

So I'm trying to set a custom image for the 'Cancel' button on a MFMailComposeViewController, what I've done is that I've added a image over the top bar of the mailer, like this: [[mailer view] ...
0
votes
0answers
41 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 ...
1
vote
1answer
60 views

Adding zip as attachment to MFMailComposerViewController fail in iOS [closed]

I have an application in which I'm attaching zip file to mail composer. I'm using below code to attach zip file. NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, ...
0
votes
0answers
66 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
52 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
2answers
70 views

How to change message details (email body) in MFMailComposeViewController?

I seem to have fallen fowl of something that seems like it should be very simple! How do I now populate an email's body with the strings a user has entered into NSUserDefaults? Basically there is ...
0
votes
0answers
31 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
30 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
1answer
52 views

Objective C: Bold Message Body in MFMailComposeViewController

I have this code NSString *messageBody = [NSString stringWithFormat:@"Name: %@\nCompany/Institution: %@\nAddress: %@\nCity: %@\nCountry: %@\nContact Number: %@\nE-Mail: %@\n \n \n Message: %@", ...
1
vote
1answer
82 views

Send Mail TableView NSArray

This is my NSObject code; Task.h #import <Foundation/Foundation.h> @interface Task : NSObject @property (nonatomic,strong) NSString *name; @property (nonatomic,assign) BOOL done; ...
0
votes
0answers
14 views

How to access Send or Cancel buttons in MFMailComposeViewController even though it's evil [duplicate]

I've seen a lot of similar questions being asked on SO, but every answer is "the apple docs say don't do that." Still, I can't help but think it's possible through private APIs to do this. Anyone have ...
-2
votes
1answer
127 views

dismiss mail controller view on pressing cancel button in action sheet [closed]

I have a table view with four sections. The cell of one of the sections contains the email address. When i click on that cell i open mail view controller. Now when i click on the cancel button which ...
0
votes
1answer
133 views

MFMailComposeViewController canSendMail returns YES but not sending mail in iOS

Following is my piece of code to send an attachment in a mail. This works fine. I am able to send mails but I don't receive the mails. This happens sometimes. I mean, occasionally I do receive mails. ...
0
votes
1answer
36 views

when add contact button clicked on the mail controller, navigation bar not appear correctly

I have customized UINavigation Controller, when I clicked add contact button on MFMailComposeViewController, navigation bar not displaying correctly. I have attach the image. Please help ! i think ...
0
votes
1answer
113 views

UITextField fails to show keyboard after MFMailComposeViewController is dismissed

I have an issue where the keyboard shows correctly when a UITextField is displayed, but then fails to appear after a MFMailComposeViewController is presented and dismissed. The cursor appears in the ...
0
votes
3answers
68 views

issue when multiple recipients for my app mail- Objective c

I am facing a problem when multiple recipients for my mail, i have two attachments there by default.Is there anything i have to do when iam sending a mail to multiple recipients other than the below ...
-1
votes
1answer
89 views

presentViewController is not showing mail composer sheet [closed]

presentViewController is not showing the mail modalview controller. I have changed from presentmodalviewcontroller to presentViewController, but it was not giving any error nor it is presenting the ...
0
votes
1answer
80 views

MFMailComposeViewController email to field limit 40 in iphone

I am using MFMailComposeViewController for sending emails. Mine is universal app and toField of email is having 2 mail ids. (1) Each email id is around 30 characters long. In iPhone I see it as "+2 ...
0
votes
2answers
109 views

dismissViewControllerAnimated breaks GUI

In my app i send a mail using MFMailComposeViewController. This viewController is pushed with [self presentViewController:mailer animated:false completion:nil]; from an viewController that is on ...
0
votes
1answer
47 views

Launch ipad application from attachment in email

I am sending a zip file containing images and text file as an email attachment in ipad. Now my required functionality is that I want to launch my app when user taps on attachment for downloading and ...
0
votes
2answers
84 views

In app email will send email but won't dismiss in Xcode

I have read other threads and tried multiple variables. I have an app that attaches a screenshot to an in-app email. When I press the send or cancel button the email doesn't dismiss. Not sure if I ...
1
vote
0answers
185 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]) { ...
2
votes
1answer
59 views

MFMailViewComposer does not return an error when writing a wrong target address format

When I try to send an email to a non-existing address (for example, "hello"), MFMail Composer should return MFMailComposeResultFailed, I guess, but this does not occur, and the message seems to be ...
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
67 views

MFMailComposeViewController crashing at setMessageBody

This code crashes at setMessageBody. Any help appreciated. if ([MFMailComposeViewController canSendMail]) { MFMailComposeViewController *mailer = [[MFMailComposeViewController alloc] ...
-1
votes
1answer
115 views

MFMailComposeViewController:Attach Photos (multi photos)

i want attach multi photos to one mail for my application with this code i can attach only the last one photos to mail but i can read all photos in uiimageview how can attaching all photos to one ...
1
vote
2answers
100 views

how to tell if a file has been sent or is in the outbox in iOS mail

I'm working on an iOS app that allows the user to send to store (using core data) and send back data in the form of a csv file which i have attached to an email using the MFMailComposeViewController ...
2
votes
1answer
193 views

MFMailComposeViewController does not work when customizing font with UIAppearance proxy

MFMailComposeViewController is presented and working fine when I do not customize the fonts in my app. But when I do, 50% of the time it got presented and call directly his delegate with ...

1 2 3 4 5 10