Reputation: 187
how to send email in iphone SDK? any example tutorial to take email address from iphone also?
Upvotes: 7
Views: 6653
Reputation: 36752
You should use the MFMailComposeViewController
class, and the MFMailComposeViewControllerDelegate
protocol, that that tucked away in the MessageUI framework.
First to send a message:
MFMailComposeViewController* controller = [[MFMailComposeViewController alloc] init];
controller.mailComposeDelegate = self;
[controller setSubject:@"My Subject"];
[controller setMessageBody:@"Hello there." isHTML:NO];
[self presentModalViewController:controller animated:YES];
[controller release];
Then the user does the work and you get the delegate callback in time:
- (void)mailComposeController:(MFMailComposeViewController*)controller
didFinishWithResult:(MFMailComposeResult)result
error:(NSError*)error;
{
if (result == MFMailComposeResultSent) {
NSLog(@"It's away!");
}
[self dismissModalViewControllerAnimated:YES];
}
Upvotes: 16