Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

ruhi

macrumors member
Original poster
Jun 17, 2009
70
0
Hello,

I want to send mail from my iphone application with the help of Mail.app which is already there in iphone.

How can i do it?

Thanks ,
Ruhi
 
Create an IBAction called email in the .h of the View you would like to email from. Then in the .m put in the following code:

Code:
- (IBAction)email {
	
	[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"mailto://example@yahoo.com"]];
    
}
Then you can go in IB and create a Round Rect Button and connect the action to the button using Touch Up Inside.



How hard was it for me to type in that code instead of sending the person to links that don't helP? Not very hard at all.
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.