I found email composer sample code from iphone OS Ref Library. Here is a code-
Code:
NSArray *toRecipients = [NSArray arrayWithObject:@\"first@exampl
MFMailComposeViewController* controller = [[MFMailComposeViewController alloc] init]; controller.mailComposeDelegate = self; [controller setToRecipients:arr]; [controller setCcRecipients:arr2]; [controller setBccRecipients:arr3]; [controller setMessageBody:@"Hello there." isHTML:NO];