1
vote
3answers
47 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
1answer
21 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 ...
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 ...
1
vote
1answer
58 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
2answers
66 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 ...
-2
votes
1answer
124 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
111 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
1answer
79 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 ...
1
vote
0answers
177 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
185 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
145 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
0answers
78 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
1answer
71 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
4answers
166 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
1answer
86 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
82 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 ...
0
votes
1answer
108 views

Not Able to Attach MSWord Documents in MFMailComposer

In MFMailComposer I'm attaching MSWord documents. Those documents are attached to MFMailComposer. I sent those documents to another mail address. In the destination mail those attachments are ...
-1
votes
2answers
128 views

url link is not getting sent from email [closed]

In my iphone application, in MFMailComposer, I m adding an attachment. that attachment as a url link.in that link there is a pdf file. When I click send the url link is not sent to destination mail ...
0
votes
3answers
84 views

NSString losing new lines when added to mail body

I am storing some text as an NSString. The text contains multiple paragraphs. When I log or display the text the new line characters are inserted correctly. However, when I use the ...
1
vote
1answer
73 views

iOS - Load NSURL inside MFMailComposeViewController

Is it possible to load a URL inside MFMailComposeViewController body? If not, what is the efficient way where I can load this URL (i.e. HTML) so I can load it in the mail body?
7
votes
6answers
557 views

MFMailComposeViewController's Cancel Button (action sheet possibly) freezes the view

I've seen several questions before such as this but for the lack of an accepted answer as well as having implemented everything as needed I still continue to face the issue as follows: I display the ...
1
vote
3answers
85 views

Email issue: want to send email without additional window

I want to send email without showing MFMailComposeViewController. I just want to send email to some sequence of emails (so user should see only my spinner, not MFMailComposeViewController with send ...
1
vote
3answers
758 views

MFMailComposeViewController model does not display

I am presenting MFMailComposeViewController in my app for Email. But the view is not getting disply , only upper SEND and CANCEL buttons getting displayed. This is the screen shot of view that is ...
0
votes
0answers
213 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 ...
1
vote
4answers
302 views

Difference between mailComposeDelegate and simple Delegate property

Hi i am getting confuse on MFMailComposeViewController delegate property, when i set mailer.mailComposeDelegate app crash just after call [self presentModalViewController:mailer animated:YES]; and ...
0
votes
1answer
60 views

Assertion Failure in MFMailComposeInternalViewController

Getting a weird Assertion Failure when presenting an email prompt in iOS Code: - (void)displayComposerSheet:(id)delegate withDataSource:(id )datasource { MFMailComposeViewController *picker = ...
0
votes
0answers
108 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.
3
votes
1answer
245 views

MFMailComposeViewController - change cancel and send button to images

I want to customize the MFMailComposeViewController such that it has my custom images/buttons instead of the default "cancel" and "send" buttons. I tried googling for an answer but couldn't find ...
0
votes
1answer
147 views

Change Background image of MFMailComposeViewController

I want to add background image to my email composer. I am using MFMailComposeViewController. I have tried getting the subviews of MFMailComposeViewController, it just returns two subviews i.e., a ...
0
votes
2answers
313 views

iPhone SDK email video [duplicate]

Possible Duplicate: Can’t send email with video/audio attachment on iphone! so for the past couple of days I have been trying to email a video. I got it to successfully select the video, ...
0
votes
2answers
92 views

String in Message body not working

I implemented the code below, and logged the arrayPlainText but when I run it in the simulator and on my iPhone it only shows the first item and everything else just disappeared. NSMutableArray ...
0
votes
4answers
460 views

MFMailComposeViewController crashes when trying to edit email body in iOS 5

I have an App that supports both iOS 5 and iOS 6. MFMailComposeViewController works fine in iOS 6 but I have a crash in iOS 5 when a user tries to edit the body of the email. All other fields can be ...
1
vote
1answer
146 views

How to get the to, from, cc and bcc fields from mail composer in a callback for iPhone?

Does anyone know if its possible and how to get the TO, FROM, CC, and BCC fields from a mail composer in a callback for the iPhone?
2
votes
2answers
811 views

Modal MFMailComposeViewController doesn't respond to touches in iOS 6

My iOS app contains rounded corners for the whole application (described here) UIImage *overlayImg; int offset; if(IS_IPHONE_5) { overlayImg = [UIImage imageNamed:@"rounded4inch.png"]; ...
1
vote
1answer
261 views

Cancel MFMailComposeViewController's ActionSheet clipped

I've been trying to solve this all day, I upgraded my mainWindow.xib to the 4 inch iPhone 5 version, and all of my ActionSheets behave normal on the 4 inch simulator. However, if I cancel composing an ...
0
votes
1answer
184 views

How to Open Clickable Url in MFMailComposer

I am using the Following piece of code if ([MFMailComposeViewController canSendMail]) { MFMailComposeViewController *picker = [[MFMailComposeViewController alloc] init]; ...
0
votes
1answer
193 views

MFMailComposer place Thanks,Regards text after attachment image

Hi I'm using MFMailComposer to send mail in my application, where i'm attaching an image and in body html content is there and finally i'm adding Thanks,Regards message to mail but all the text ...
0
votes
2answers
164 views

Show Mail Composer When Cell of Table View Is Selected

I am trying to get my table view to present a mailcomposerviewcontroller when a cell is selected. I have tried using: - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath ...
0
votes
1answer
346 views

How to export SQLite file into CSV file with table format (excel sheet style)

in iphone app, I want to export a SQLite database file to CSV file. (later i attach this file in mail) that too in a table format ( or exel-sheet format) I have tried the following logic but it is ...
0
votes
1answer
459 views

Why anchors tag containing an image don't work in Iphone's mail app?

I"m doing a HTML newsletter for a client, using thunderbird to send it, and everything works fine in all browsers and mail clients, but the anchor tag containing an image, don't work in Iphone's mail ...
0
votes
1answer
219 views

How to send .caf file via email in iphone?

I want to send an audio file with .caf extension via email in iphone. Can anyone help me to do this? I have written mimeType:@"audio/caf" but I think it is not supporting that. Please help me to do ...
0
votes
3answers
576 views

Sending an Email on one click (Without showing MFMailComposerView)

This may be a duplicate question but after searching it I couldn't find the answer which can help me. So, I want to send an email from the synced account on the device to an address on just one ...
1
vote
2answers
501 views

How to send mail automatically in iphone?

I have used the following to display mailViewController -(IBAction)sendMailbuttonTapped { if([MFMailComposeViewController canSendMail]) { MFMailComposeViewController *mailCont = ...
3
votes
7answers
2k views

MFMailComposeViewController crashing while dismissModalViewControllerAnimated in iOS5

I am using MFMailComposeViewController in my conde to provide Mail functionality but after sending mail or when i want to cancel mail it will be crashing. below is my code: ...
2
votes
1answer
137 views

How do I send package-type documents as a mail attachment?

I have a package-type document - i.e. it's really a folder, but it uses NSFileWrapper and conforms to com.apple.package to appear as a file - which I want to share by email. I've made an ...
0
votes
1answer
337 views

Suppress “Save Draft” button in MFMailComposeViewController

I am using MFMailComposeViewController inside an iphone app and it works fine. When I press the "Cancel" button, an action sheet with the options "Delete Draft" (red), "Save Draft"(white) and ...
4
votes
2answers
757 views

How to prevent crash on Cancel of MFMailComposeViewController?

Somewhere: if([MFMailComposeViewController canSendMail]) { MFMailComposeViewController *email_vc = [[MFMailComposeViewController alloc] init]; email_vc.mailComposeDelegate = self; ...
0
votes
1answer
250 views

‪Can I send multiple SMS to multiple recipients simultaneously with showing the MFMessageComposeViewController UI view.‬

‪In my iPhone application‬ I want to send test message-the user needs to be able to select multiple contacts and send a text to each one simultaneously? Means multiple ‪recipients‬ with ‪multiple‬ Sms ...
0
votes
1answer
255 views

iPhone Mail Composer Appearance Change allowed?

I seem to remember sometime back reading that changing the appearance of the mail composer view controller was not allowed. However, I also just tried for the first time to implement changes to my ...

1 2 3 4 5 6