mfmailcomposeviewcontroll

Prevent image resizing when attaching via Mail Composer?

I'm using the basic MFMailComposeViewController through the iPhone SDK to attach photos and send e-mails from within an app. The big problem I have is that, if I have HTML enabled (isHTML:YES), the control takes it upon itself to add reduced width and height values to the image element within the HTML that it generates. The actual imag...

MFMailComposeViewController iOS 4.0

When sending an email with a picture attachment in iOS4, the last step asks if you want to reduce the message size by scaling the image. Is it possible to force the app to send the highest resolution image and not to display this message? ...

MFMailComposeViewController attachment choice

Hi, I'm using a MFMailComposeViewController in my iphone app and I'd like to give the user the choice to attach some pictures to the e-mail. As there is no specific button by default, I was thinking about subclassing MFMailComposeViewController and adding a button for this. Unfortunately, according to the documentation the addAttachmen...

How to attach mail with UIImageView ?

The current solution is i need to save image and then load attachment with file is it possible to load from UIImageView directly? any idea? ...

Mail the recorded audio.

Hi all, In my app i am recording audio. I want to mail the recorded audio file. I am doing like this. MFMailComposeViewController *controller = [[MFMailComposeViewControlleralloc] init]; controller.mailComposeDelegate =self ; NSData *myData = [NSData dataWithContentsOfURL:url]; Here url is the path. printf("\n mydata %d",[myData le...

MFMailComposeViewController is not interactive

I'm using the following code in two view controllers; one, where it is triggered by pressing a button, and another, where it is triggered by tapping a table cell. In the first, it works fine. In the second, triggered by the table-cell tap, the mail composer appears, with the fields correctly filled out, but the cursor and keyboard do n...

MFMailViewController Not Working.

Hi, I have a View Based application and I have added a UITableView in the view with navigation bar and tab bar. But now when I try to add the MFMailViewController on the same view when there is no table or tab bar it does not work at all. I am using the following the code to add MFMailViewController MFMailComposeViewController *mai...

iOS: Sending Attachment with MFMailComposeViewController, arrives as "Part 1.2"

I'm trying to send an NSString as an attachment using MFMailComposeViewController. When I open the Mail I just have a "Part 1.2" Attachment. Here's the code used: MFMailComposeViewController* controller = [[MFMailComposeViewController alloc] init]; NSMutableString* writtenWillItBe=[NSMutableString stringWithFormat:@"...",...]; [contro...

Set height of MFMailComposeViewController when pushed in UIPopoverController on iPad

I have a share button in a popover that pushes MFMailComposeViewController. The popover correctly becomes a modal view, as it's supposed to, until i dismiss the modal. The problem is that, while it keeps the width of the popover (320.0), it grows to the height of the view. I would like to set the mail view to a height of 500.0. Here's ...

MFMailComposeViewController usage and Apple aproval process

Hi, In my app, I have a logs mechanism, which offer the possibility to the customer to send the logs via mail.For this, I integrated in my app the Apple MFMailComposeViewController. In case that the customer use a device with low OS version (2.x) or an e-mail account isn't presented on the device, I pushed some UIAlertsView with some su...

not able to present mail compose view controller on the view

i hav a button on navigation bar for opening the mail view controller .. i am using view based app and when i tap the button its executes the ibaction i wrote but not presenting the view .... -(IBAction)mailid:(id)sender{ MFMailComposeViewController *controller = [[MFMailComposeViewController alloc] init]; controller.mailComposeDeleg...

Implementing Contact Form Like fuctionality to send Emails from iphone app

Hi, In my app the functionality required is similar to "contact form". I want that user should be able to send email to me using that contact form. Now the form should contain textFields for Subject and Message Body but the Recipient Email Address should be pre-fixed and should not be shown.As I dont want to disclose my email id to all...

Trying to Integrate Mail Into my app, getting 2 warnings.

I'm trying to integrate sending mail into my app, but I end up with 2 warnings. I am using Obj-C, the Cocos2d Framework. This is my code. -(void) mailTapped: (id) sender { MFMailComposeViewController *composer = [[MFMailComposeViewController alloc] init]; composer.mailComposeDelegate = self; if ([MFMailComposeViewController canSe...