When writing your iPhone application you may wish to send an email using the iPhone's built in mail client. This simple piece of code will do this:
NSURL* mailURL = [NSURL URLWithString: @"mailto:foo@example.com?cc=bar@example.com&subject=My%20Subject&body=bodyStuff"];
[[UIApplication sharedApplication] openURL: mailURL];
However, remember that the string must be correctly URL encoded. This is simple with a small string such as that in the example, but when creating a fairly long email, or constructing one from data in a loop for example.. this isn't so easy! If you replace mailURL in the final line with:
[mailURL stringByAddingPercentEscapesUsingEncoding:NSASCIIStringEncoding]
then you can leave all the original space characters and slash n characters in with no problems!
5 comments:
This code doesn't work:
[mailURL stringByAddingPercentEscapesUsingEncoding:NSASCIIStringEncoding]
mailURL must be a NSString - not NSURL
After changing that it works fine :)
I am going to use this code iphone application development let see what happen.
Hi,
Many outsource mobile application development as well as web development companies are offering custom iPhone application development to put your ideas into existence.
Thanks.
INFORLINX is a leading provider of consulting services and technologies that enable clients to achieve real business value using state-of-the-art information technology.
Thanks for the marvelous posting! I definitely enjoyed reading it, you happen to be a great author.I will make certain to bookmark your blog and will come back in the future.
Post a Comment