The MFMailComposeViewController class provides a standard interface that manages the editing and sending of an email in iOS.
0
votes
1answer
141 views
Attached NSMutableArray data in E-mail Body?
I am New To Iphone programming.my Array store UIlabel along with properties.For Exp,Text,TextColor,background color etc.Now i want to send all the array data in E-mail body.
here is my code.
...
3
votes
3answers
641 views
how to create and attach CSV file in MFMailComposer in iPhone sdk?
i have created one csv file and i am also attaching it to MFMailComposer and it shows me to my mail composer but when i send it to user email it does not shows me attached csv file in email. i have ...
0
votes
1answer
333 views
Data Attached in E-mail?
My NSMutableArray data are in NSData formate.I am trying to attached NSMutableArray data to E-mail body.Here is my NSMutableArray code:
NSUserDefaults *defaults1 = [NSUserDefaults ...
0
votes
3answers
162 views
Data Attachement in E-mail?
I save my objects in NSMutablearray in NSData formate.No i am try to attached in E-mail Body.here is code.
- (IBAction)sendEmail
{
if ([MFMailComposeViewController canSendMail])
{
...
0
votes
1answer
393 views
NSMutableArray Data Attachement With E-mail Body?
My NSMutableArray data are in NSData formate.I am trying to attached NSMutableArray data to E-mail body.Here is my NSMutableArray code:
NSUserDefaults *defaults1 = [NSUserDefaults ...
1
vote
2answers
307 views
Is it possible to programmatically send an email without the signature in an iPhone?
I am creating an app which sends brings up the mail composer to send an email. It is possible for it not to have the signature show up?
1
vote
1answer
177 views
How can I Attached NSMutableArray Data With E-mail Body?
I am trying to attached NSMutableArray data to E-mail body. Here is my NSMutableArray code:
NSUserDefaults *defaults1 = [NSUserDefaults standardUserDefaults];
NSString *msg1 = [defaults1 ...
0
votes
1answer
252 views
Convert Bytes Into UIImage
When I convert my NSMutableArray Into NSdata,I get NSMutableArray data in bytes.
Now I want To convert it into UIImage, because I want to send My Array data by Email, but I get null in UIImage.
Here ...
0
votes
1answer
404 views
How can I create an email using a specific font?
I have made an applications which has specific font (handwriting.ttf), it works absolutely fine in application but when I email the text written in this font through my application - the font becomes ...
4
votes
2answers
431 views
How to embed an image in the HTML body of an email in iOS
I'm trying to include an image in the body of an HTML email sent from an iPad. It seems impossible. I have tried to use the CID approach, but it seems that in iOS it is not possible to get/set the CID ...
0
votes
2answers
554 views
Objective C - attachments via MFMailComposeViewController not showing up
I'm trying to attach a wav-file from an iOS application but the attachment is not delivered even though it's visible in the composed mail.
Heres the related code:
if ([MFMailComposeViewController ...
0
votes
2answers
299 views
How to write code to pick the selected EMail address from phone book to send E-mail from my iphone application
I have implemented send Email code using MFmailComposer...
it's FINE but the problem is in picking the Email address of the recipient .
i wan t to get the Email address from the address book ...
3
votes
1answer
259 views
issue using MFMailComposeViewController
I am experiencing a problem with using MFMailComposeViewController. Here's a sample code that I've tried to run on a device. I've deliberately added a delay of 5sec (just to simulate the experience of ...
1
vote
1answer
1k views
MFMailComposeViewController will not dismiss
After following a tutorial that showed me how to implement In-App Mail, it seems to fail upon the cancel button and send button to dismiss the view.
Now I have read a few comments on here that say I ...
0
votes
1answer
129 views
How to write code to pick the selected phone num address from phone book to send msg from my iphone application
I have implemented send sms code like this...
it's FINE but the problem is in picking the Number of the recipient .
in my code number is the value entered in a textfiled,
but i wan t to get the ...
2
votes
1answer
253 views
MFMailComposeViewController's Send and Cancel Buttons are not appearing
for some reason the send and cancel buttons are not appearing, i even pasted the following code at the start of the application in appdelegate just when the app launches but still its not working. Can ...
1
vote
3answers
281 views
How can i call a mail function in Root ViewController?
I want to send a mail with attachment . In my app i created a separate class for the mail function and in rootViewController I have button Email It . When i click it My mail Function has to be called ...
2
votes
0answers
90 views
MFMailComposeViewController can not create attachment on iPad IOS5
it works on iPhone , but no attachment on iPad .
is MFMailComposeViewController no support iPad IOS5?
1
vote
1answer
1k views
How to set first Image after Some Text in Email body?
I am using MFMailComposeViewController for sending the Email,
With this code I am able to get the Image, But image comes after the Text Detail,
I wan't First Image and after Text,
Here is my code,
...
0
votes
1answer
521 views
Hyperlink in email body does not working in iphone
I have used following code to display hyper link in email body.But it only shows text in message body.when i click on it.Nothing happens.
-(IBAction)emailToFriend:(id)sender
{
...
0
votes
1answer
514 views
Calculate mail attachment size in iOS
I'm trying to calculate the size of a mail created via MFMailComposeViewController.
The user selects some titles from a UITableView and my app fetches appropriate PDF files from a server and attaches ...
0
votes
2answers
277 views
How to run email/sms in landscape iPhone app?
I have an iPhone app, which is running only in landscape mode, but recently I wanted to add mail/sms/facebook features (via UIButton actions). The last one is running smoothly, I launch web browser ...
0
votes
2answers
360 views
MFMailComposeViewController : gives EXC-BAD-EXCESS when dismiss it from parent view
I have UINavigationController/UITabBarController base application and all is working fine but MFMailComposeViewController driving me crazy. I have go through almost every post of stack overflow about ...
2
votes
2answers
421 views
ShareKit method swizzling in Lion / Xcode 4.3.1?
I recently upgraded to Lion and Xcode 4.3.1 with the iOS 5 SDK, and the sharing library ShareKit is broken - it used method swizzling for its email handler. Apparently Apple has banned or at least ...
0
votes
1answer
219 views
DismissModalViewControllerAnimated?
I've been looking for hours to solve my problem. Right now my program is set as a page control with a UIScrollView. So I looked at a tutorial on adding an in-app email ...
0
votes
1answer
234 views
MFMailComposer sending attached image size increased
i'm using MFMailComposer to send an image.m using this code
MFMailComposeViewController *picker = [[MFMailComposeViewController alloc] init];
if (picker !=nil) {
...
0
votes
3answers
293 views
MFMessageComposeController Issue
i'm having a problem with my MFMessageComposeController. So, in my app every time you click on a button, a UIActionSheet appears and then you have to select if you want to make a call or send a ...
0
votes
1answer
176 views
Has any image size limitation for image send to mail in ios application?
I am new in ios development .Now i am trying to develop an ipad application .In my application sent an image to mail,the image means a uiview and converted to uiimage with the following code and sent ...
2
votes
1answer
876 views
iPhone - MFMailComposeViewController delegate incompatible type
I have a view controller which opens an MFMailComposeViewController modally. When I try to set the mail view controller's delegate to the parent view controller, I get this warning:
Assigning to ...
0
votes
1answer
258 views
MFMailComposeViewController - edit body but not recipients and subject
I have a MFMailComposeViewController wherein I want to edit the mail body, but I want the mail recipients to be fixed which will be already there when mail opens.
I tried setting setEditing as NO. But ...
1
vote
2answers
139 views
NSInvalidArgumentException while Presenting ModalView
Exception Message:
Objective-C exception thrown. Name: NSInvalidArgumentException Reason:
Application tried to present a nil modal view controller on target <Navigator: 0x1bed0d0>.
Here is ...
0
votes
2answers
167 views
strange behaviour from Mail and Message controller - pre initialised
I have pre allocated the mail and messaging controllers on startup in my app delegate to save the initialisation time (over 10 secs) when the user is using my application...
__mailController = ...
0
votes
1answer
250 views
Set the title of MFMailComposeViewController to NIL
Does anyone know how to change the title of MFMailComposeViewController to @"" but it never changes.
I have the following code written:
NSString *currentVersion = [[UIDevice currentDevice] ...
0
votes
1answer
293 views
Custom MailComposeViewController Navigationbar not working in iOS 5
Developing MFMailComposeViewController to have custom titleView on the navigationBar on ios 5 Simulator but it does not work on it.
Currently it has Xcode 4.2 and when deployed on iOS 4, it works ...
2
votes
2answers
276 views
iOs Add My Current Screen to email
I am working on a drawing app , where i have to send the current drawing through email. I managed to get the screen shot of the current screen . But how can i send that image through ...
1
vote
0answers
167 views
MFmail composer sent junk mail with
I am sending mail using MFMailComposeViewController and if i am sending message body with HTML tag it will send as a junk mail otherwise it will be sent as a normal mail....
Any idea what I am doing ...
0
votes
2answers
578 views
Load UIWebView's Contents into Email Message
I have a UIWebView in my view controller. This UIWebView shows a PDF file. I have created a button. When the user clicks on this button, I want to send the content of the UIWebView via email. As a ...
0
votes
1answer
142 views
MFMailComposer sending attached Image scaled down
I'm using a UIImagePicker to take a picture and browse the Camera Roll.. I also added a link to mail the picture which is displayed in a popup window. The attached image comes up in it's native size ...
1
vote
2answers
369 views
Standalone UINavigationBar and MFMailComposeViewController
I am using a standalone UINavigationBar with one button that toggles a side menu on the left. It works flawlessly.
Now I wanted to add a email feedback form using MFMailComposeViewController. It ...
3
votes
0answers
751 views
IPhone PhoneGap Email Composer SECURITY_ERR: DOM Exception 18 [closed]
I am creating an application using "IPhone, Phonegap, & Email Composer" plugin from phonegap.
I want my application to send mail using "Email Composer". Everything works fine until i return back ...
0
votes
0answers
218 views
MFMailComposeViewController image attachment broken icon and rotation
I'm taking a picture using the UIImagePickerController, and I want to attach it to an email. I've been able to do that successfully, it attaches when the email sends and comes through okay, but there ...
0
votes
1answer
114 views
Handling received messages iphone
I have got a proj work, which works in this way...
An app which connects two guys, I'm able to send a message and the other one receives it in his message inbox. Can't there be done something such ...
0
votes
0answers
422 views
MFMailComposeViewController image attachment and HTML body
Hopefully simple question:
Is there a way to attach an image to the MFmailcomposeviewcontroller AND have an HTML formatted body? Everytime I try, I can do one or the other, but not both. If I set ...
1
vote
2answers
1k views
How to send mail from iphone app without showing MFMailComposeViewController?
I want to send mail from my custom iPhone app. I have used MFMailComposeViewController to send mail from my iphone in my previous app. Now, i don't want to show the MFMailComposeViewController to the ...
3
votes
2answers
1k views
Line Break in Localizable.strings for MFMailComposeViewController
How can I add line breaks in my language file for use in MFMailComposeViewController? The \n doesent work for me. A break with a normal klick on return key has the same result, no line breaks!
My ...
0
votes
2answers
112 views
How do I send the contents of a textView as an Email?
I have an app that has favorite quotes that are displayed using a textView. I want to provide the option of emailing directly from this textView. Secondly I would like to be able export to a PDF or ...
0
votes
1answer
182 views
empty emails with mfmailcomposeviewcontroller … foreign language issues?
I'm using mfmailcomposeviewcontroller in my app for users to email me about issues etc... pretty basic right. This controller has the 'cancel' & 'send' button in it so if users didn't want to send ...
1
vote
1answer
289 views
Sending email options in iOS5 app
I've got my iOS app sending out emails, where it generates the email form ready for the user to send using MFMailComposeViewControllerDelegate. Now I'm just wondering if we can hide the CC/Bcc field ...
0
votes
1answer
151 views
How can i send photo with email dont get mail screen
Hi i all i am trying send email with a photo. But i dont want see the screen
like this
i want when i pushed the button mail send automoticly.
my code:
MFMailComposeViewController * mailView = ...
1
vote
2answers
1k views
How can I send an image with MFMailComposeViewController
I am trying to send an email using MFMailComposeViewController but somehow it won't work. When I don't send an image everything works just fine. But if I try to add photo there is the following error:
...


