The MFMailComposeViewController class provides a standard interface that manages the editing and sending of an email in iOS.
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]) {
...
2
votes
1answer
65 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
71 views
MFMailComposeViewController crashing at setMessageBody
This code crashes at setMessageBody. Any help appreciated.
if ([MFMailComposeViewController canSendMail])
{
MFMailComposeViewController *mailer = [[MFMailComposeViewController alloc] ...
-1
votes
1answer
128 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
114 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
257 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
vote
1answer
97 views
Use MFMailComposeViewController to compose HTML message [duplicate]
I want to add some checkbox to each item in my email body ,here is some testing code
[mailPicker setMessageBody:@"<html>\
<head>\
<title> Insert title here ...
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, ...
2
votes
3answers
436 views
Issue when using MFMailComposeViewController
I have a tricky problem. In one of my app, with over 150.000 downloads... I have a problem which seldom occurs and which I can't seem to figure out.
The problem is the following:
In a view where the ...
0
votes
1answer
98 views
MFMailComposeViewController get email body
I can detect sending in the MFMailComposeViewController's delegate method
- (void)mailComposeController:(MFMailComposeViewController *)controller didFinishWithResult:(MFMailComposeResult)result ...
0
votes
1answer
99 views
How to save the user's email recipients when sending email with UIActivityViewController?
I'm using UIActivityViewController and when the user selects email from the list of options is there a way to save the email recipients that the user inputs?
Do I need to subclass ActivityItemSource ...
5
votes
1answer
167 views
MFMailComposeViewController Force actual size on image attachment
I'm working on an app that allows a user to email an image using MFMailComposeViewController. The attached image is 1200 x 1800 and it is imperative that the image size not change.
With large ...
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
2
votes
1answer
51 views
Memory leak for MFMailcomposeviewcontroller on send mail
My app used MFMailcomposeviewcontroller for send mail.I used instrument to check leak,when i press send button in mail compose got more leaks in foundation and messageUI framework and attached screen ...
1
vote
1answer
162 views
How to Send image in Email body?
I am sending image with some text in Email Body using this link my code is given below
NSString *urlString = @"url";
NSString *searchingurl = [NSString stringWithFormat:@"%@%@", urlString,idnumber];
...
0
votes
2answers
50 views
MFMailComposeViewController sending status
Is there any way to get status from MFMailComposeViewController?
lets say I'm sending a email with 20 images, i want to show some loading and then after hide loading when sending is done.
0
votes
1answer
201 views
Mail Composer multiple buttons
I have a question that was hoping to get some help with, I got the initial mail composer to load and work fine, but I was wondering if it is possible to say add multiple buttons that can bring up mail ...
0
votes
2answers
124 views
iPad Mini crashing on modal segue
I am developing an app that runs on all the deployment target simulators (5.0-6.1) and on my iPhone 3GS, 4, 4S and a gen 2 iPad. I had the opportunity today to try running it on an iPad Mini. I works ...
0
votes
0answers
361 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
1answer
151 views
ios , Attach Audio file aac format to Email
i try to send a audio record by file aac (kAudioFormatMPEG4AAC) format but the file attached it's doesn't send
*myString = file://localhost/private/var/mobile.......
here is my code
...
0
votes
1answer
107 views
Attaching .txt to MFMailComposeViewController
I have a .txt file stored in Documents Folder and I want to send it by MFMailComposeViewController with next code in the body of -sendEmail method:
NSData *txtData = [NSData ...
0
votes
2answers
144 views
MFMailComposeViewController few attachments
I'm successfully sending an email with attached UIImage from my app, but is it possible to attach more than one image with MFMailComposeViewController ?
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 ...
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 ...
0
votes
1answer
73 views
MFMailComposeViewController.h Broken
After successfully implementing the MFMailComposeViewController in my app, run it in the simulator and my iPhone, where it still works fine, it just crashed.
I get 5 MFMailComposeViewController.h ...
0
votes
1answer
75 views
Creating a custom view for MFMailComposeViewController
I am using built in MailComposeViewController for sending email in my App. The email screen
looks as follows
The email body contains a table which is generated using html. This table is ...
1
vote
1answer
149 views
in-app email makes swoosh sound but doesn't send
I get to the Mail program fine, and when I press "Send" I hear the swoosh sound and Mail closes and returns me to my app, but the actual mail isn't sending.
Here's the code I'm using to mail. Any ...
0
votes
1answer
67 views
mfmailcomposer to attach a pdf to an email doesnt work with ipad 1 but ok with ipad2
I am using the code below to download a pdf file from a website and subsequently to display it in a uiwebview
NSString *url = [NSString stringWithString:[[[popOverContent currentValues] ...
0
votes
2answers
362 views
MFMailComposeViewControllerDelegate method does not get called with iOS 6
I present MFMailComposeViewController controller and set it delegate - everything works as expected with iOS 5 but the delegate method (mailComposeController:didFinishWithResult:error:) is not called ...
1
vote
1answer
66 views
Mail composer didn't display under my UIWebView
I have a MainController and detailedcontroller. When I popover the Book selection and select a Book, the detailcontroller display an UIWebView with the book articles :
@interface ...
0
votes
0answers
101 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
4answers
188 views
how to attach two images to mfmailcomposer view controller in ios
How to add web view data and image view data to Mfmailcomposer view controller in ios.
for sending mail to others.
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
1answer
99 views
how to use multiple mimetypes of image for uiwebview image and attach with email objective c
I am downloading image from UIWebView with this method
NSURL *imgUrl=[[NSURL alloc] initWithString:[[DataPassing sharedManager] pageIMGurl]];
NSData *imgData = [NSData ...
1
vote
1answer
75 views
MFMailComposeViewController with multiple email clients
So MFMailComposeViewController are using email account from Mail.app right? what if there are more than one account configured in mail.app? Is there any way to let the user to choose account before ...
0
votes
1answer
111 views
xcode - Design / Redesign MailController / MFMailComposeViewController
Is it possible to Redesign the MFMailComposeViewController?
How?
The App Dropbox can do it.
Picture: http://jonathangurebo.tumblr.com/post/40436277822
Can I change the "MessageUI.framework"?
0
votes
1answer
132 views
How to rotate only MFMailComposeViewController
I have an application that on the iPod Touch/iPhone should not rotate. However, I do have an MFMaiComposeViewController for users to send bug reports. How my app is set up though, nothing can rotate, ...
1
vote
3answers
232 views
Need help dismissing email composer screen in iOS
I have an app that allows the user to send a test email from their iPhone. My app calls a method to activate the compose mail function like this:
-(void)displayComposerSheet
{
//set up a way to ...
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 ...
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 ...
1
vote
2answers
159 views
Trying to create IBAction inside custom cell with buttons inside
I have created a my own custom cell in a nib file and I am receiving an error I don't understand.
[self presentViewController:_myMail animated:YES completion:nil];
In this line I receive there ...
0
votes
3answers
59 views
Print a string in MailComposeViewController
I was working on an app and I wanted to display the string stringValue as a variable to display when someone wants to share something from my app via email.
- (IBAction)openMail:(id)sender {
if ...
0
votes
1answer
117 views
How to only allow one Recipients in Mail in iOS
I am creating an Contact Us button which would allow the User to contact our Support Team by Email(I am using iOS 6). But I want the Mail Composer only email our support team email and not allow the ...
0
votes
1answer
90 views
Not able to view the data in a attachment in mail when sending the attachments from mfmailcomposer
In MFMailComposer I'm attaching an attachment. I send that attachment to another mail address.
In the destination mail that attachment are displayed with a download option and not with a view ...
1
vote
2answers
95 views
can't set Mailto field in MFMailComposeViewController in iphone
I have write code to send mail on button click.But i have email id programatically.
I have output like this.
email@gmail.com Send MailButton
Now when i click on Send MailButton then it open ...

