Click here to Skip to main content
15,885,216 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How to Make mail application for ios how and what i need to know
I am new in IOS dev.
Posted

Start here: https://developer.apple.com/devcenter/ios/index.action[^], where you'll find any needful information, including: guides, technical blogs, sample codes, etc.
 
Share this answer
 
v2
Objective-C
#import <MessageUI/MessageUI.h>
#import <MessageUI/MFMailComposeViewController.h>
        MFMailComposeViewController* controller = [[MFMailComposeViewController alloc] init];
	if (controller==nil) {
		return;
	}
	controller.mailComposeDelegate = self;
	[controller setSubject:@"Your subject"];
	[controller setMessageBody:@"Your message body" isHTML:NO];

I hope it's usefull
 
Share this answer
 
v2
See You can access built in application what iDevice has Provided, for that you can go through this link. I think it will help full to you.

http://www.chupamobile.com/tutorial/details/65/Accessing+Built-In+Applications/[^]

Or you can create your custom mail application & create your Custom UI for Users.
 
Share this answer
 
v3

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS
Top Experts
Last 24hrsThis month


CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900