Tagged Questions
0
votes
2answers
516 views
getting from email address when using MFMailComposeViewController
i want to show user from which account he is going to send email when he is going to send an email using my app and i am using MFMailComposeViewController. so what is the way of getting the from email ...
4
votes
3answers
3k views
Entering line breaks in NSString
I need to set mail Body in MFMailComposeViewController to separate some text in number of lines. I am using the following line of code but it isn't working.
[mail setMessageBody:[NSString ...
0
votes
1answer
395 views
Question on MFMailComposeViewController to add text on image attched
I am currently able to attach a image into my mail ( MFMailComposeViewController )
In that image i want to add some texts on it.Is that possible to do so..
Please provide me some guidence!.
Thanks ...
2
votes
2answers
2k views
Problem with MFMailComposeViewController's “No mail accounts” alert - SDK 3.0 vs SDK 4.0
I have a problem with this piece of code when I build it for different Base SDKs:
MFMailComposeViewController *mail = nil;
mail = [[MFMailComposeViewController alloc] init];
NSString *description = ...
2
votes
1answer
929 views
MFMailcomposer localize To: Cc/Bcc: and Subject: fields
I there a way to localize To:, Cc/Bcc: and Subject: titles in MFMailcomposerController? Or customize them?
0
votes
1answer
220 views
How can I send email from my application?
I want to attach a video and send email from my application.
I downloaded apples example code MailComposer. I compiled it. I did not get any errors or warnings.
I sent the mail to my mail id. But, ...
3
votes
1answer
2k views
adding new line to html body in mailcomposer
How do i add a new line characters to html body of mail composer?
I have a string:
NSString *emailBody = [NSString stringWithFormat:@"<html><b>%%0D%%0AHello,%%0D%%0AHere's a link to your ...
9
votes
2answers
5k views
Unable to dismiss MFMailComposeViewController, delegate not called
HI, I am calling MFMailComposeViewController from UITableViewController.
Problem is, delegate method mailComposeController:(MFMailComposeViewController)controllerdidFinishWithResult* is never called ...
0
votes
2answers
457 views
Viewing CSV attachment in MFMailComposeViewController
I have an application which generates a csv-file and then attaches it to an email using MFMailComposeViewController. This all works fine.
My problem is that I would like to add an option to view the ...
7
votes
5answers
7k views
Change title of MFMailComposeViewController
I'm using MFMailComposeViewController for in-app email in my app, but I'm not able to change the title. As default it's showing the subject in the title, but I would like to set the title to be ...
4
votes
5answers
3k views
Set First Responder in MFMailComposeViewController?
I'm using Apple's MailComposer example application to send email from within my application (OS 3.0 functionality). Is it possible to set the To, Subject, or Body fields as first responder with ...
1
vote
2answers
4k views
MFMailComposeViewController attachment file size limit
I'm using MFMailComposeViewController to send a file. Everything works fine with files under 15mb. Anything over, and the file simply doesn't get attached to the MFMailComposeViewController view. ...
3
votes
4answers
4k views
HTML email loses formatting after being sent from iPhone program
I'm using MFMailComposeViewController in the iPhone SDK to bring up the mail dialog to send an HTML formatted email. The contents of the message body is being read from an HTML file which is generated ...
1
vote
1answer
1k views
Send outline as email using MFMailComposeViewController
I'd like to send a text outline via email using MFMailComposeViewController. I'm currently doing this by creating a HTML version of the document and setting this as the body of the message.This works ...
1
vote
1answer
1k views
In iPhone 3.0, Application crashes when trying to send an image from the camera using MessageUI
There is a part of the iPhone app that I'm developing where you can send images using the in app mail in iPhone 3.0. Selecting an image from the camera roll works perfectly, but when I try to go from ...