Questions tagged [mfmailcomposer]

an iOS object allowing application users to send mail

This tag dates back to iOS 5. Prefer the object named MFMailComposeViewController and its tag

170 questions
1
vote
1 answer

Repeated speech in email compose window when using Voiceover

As Voiceover users attempt to dictate in an email compose window, their words are repeated back to them as they speak. Although this does not happen in Mail, it does occur both in my complex shipped app, and in a very simple test app, which is just…
1
vote
0 answers

Attaching .txt file in Swift Email

I am having trouble attaching a text file to an email. Nothing shows up as an attachment. I've been staring at this for too long lol Please help me out. Thanks! EDIT: After a little research, i found out I can not write theList variable because it…
1
vote
1 answer

MFMailComposeViewController: toRecepients Methods Not Working Properly

I have created a simple email sender using MFMailComposeViewController. I programmed it such a way that people will have a textField to fill up a mail address before MFMailComposeViewController is called. When I tried to pass the content of the…
progammingBeignner
  • 936
  • 1
  • 8
  • 19
1
vote
1 answer

Crashing in MFMailComposeViewController implementation

My app crashes when I try to perform sent or cancel button actions in MFMailComposeViewController. here is my code. I have imported message framework and added delegates in .h file. NSString *emailTitle = @"Test Email"; …
ios
  • 955
  • 1
  • 12
  • 35
1
vote
1 answer

Whats the behavior of MFMailComposer language in iOS7 and iOS8?

MFMailComposeViewController in other languages? Whats the behavior of MFMailComposer language in iOS7 and iOS8? I changed the language inside my application but the MFMailComposer stays the same with the language in the device settings (iOS8). Is…
Ted
  • 22,696
  • 11
  • 95
  • 109
1
vote
3 answers

MFMailComposeViewController didFinishWithResult issue when the keyboard appears

I've got a standard implementation of the MFMailComposeViewController. I've set the right delegate protocols, and have a log happening on the didFinishWithResult method. See: mailComposer = [[MFMailComposeViewController alloc] init]; [mailComposer…
Andre
  • 4,417
  • 8
  • 32
  • 37
1
vote
2 answers

MFMailComposer Crashes on iOS 8 using Swift

Here is a link to a simple app with same issue: https://drive.google.com/folderview?id=0B1t60Ehs8m62Wjl3QXl1YjY4TmM&usp=sharing Here is the zip file on my server: http://xbsjason.com/test/DemoMessageUI.zip Had to post on Google Drive as Dropbox…
Jason Rybka
  • 157
  • 2
  • 15
1
vote
1 answer

UIDocumentInteractionController - MailCompose not dismissing in iOS8

I have a very strange (& serious) problem. My app uses a UIDocumentInteractionController to share a PDF document. When the user selects the "Mail" option in the controller's pop-up the MailCompose window is opened. But, neither the Send nor Cancel…
Matthys Du Toit
  • 2,168
  • 3
  • 21
  • 34
1
vote
1 answer

MFMailComposeViewController Display Issue from NSObject Class - iOS

I have an issue with MFMailComposeViewController when trying to implement from an NSObject class. I have used MFMailComposeViewController numerous times without issue, but always within a View Controller. However, in this case, I make a call to an…
1
vote
0 answers

MFMailComposeViewController not showing properly on iPhone in Landscape

MFMailComposeViewController has been giving me headaches for the last 2 days... Basically, I have an iOS7 iPhone app that uses storyboard with segues to offer both portrait and landscape views. Each view also has a tab bar at the bottom. One of the…
1
vote
1 answer

MFMailComposeViewController large Video attachment failed to send

I am sending video file as an mail attachment, when i send small video then every thing is work perfect and mail has sent, but when video size is large the it give memory warning several time and unable to sent the mail. I am allocating memory for…
1
vote
1 answer

Is it Possible to Add Email Selection Button in default mfmailcomposeviewcontroller for Selecting Multiple emails?

I am using iOS Native code and I want this kind of Functionality is it possible to Add Plus(+) button on TO Section of Email?if Yes then Can I implement the contact app Look and Feel here and Grab the Email id? Please need some suggestion how can i…
Ankit Vyas
  • 7,507
  • 13
  • 56
  • 89
1
vote
0 answers

Is there any alternative method to send e-mail from my IOS application if the default mail application has not been configured.?

i am asking this question because many of my clients are not using the default mail client. the present code am using in my app is given bellow. I just wanted to know that if it is possible to send mail from any other mail clients.. other than the…
Clement Joseph
  • 1,235
  • 2
  • 13
  • 17
1
vote
0 answers

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 = self; [mailComposer…
YogevSitton
  • 10,068
  • 11
  • 62
  • 95
1
vote
2 answers

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 class. After the file is sent I want to iterate…
SimonTheDiver
  • 1,158
  • 1
  • 11
  • 24