I am using the Following piece of code
if ([MFMailComposeViewController canSendMail])
{
MFMailComposeViewController *picker = [[MFMailComposeViewController alloc] init];
picker.mailComposeDelegate = self;
[picker setSubject:@"Check out"];
UIImage *morphedImage = [sharedSingleton getCopy];
NSData *myData = UIImagePNGRepresentation(morphedImage);
[picker addAttachmentData:myData mimeType:@"image/png" fileName:@"RaceFaceImage"];
[picker setMessageBody:@"I've given you a new look using my RaceFace iPhone application. Check it out and have a good laugh. I dare you to Race me, download the app here:<b>Sourish</b><a href='www.google.com'>itunesLink</a>" isHTML:YES];
[self presentModalViewController:picker animated:YES];
[picker release];
}
else
{
}
I am getting O/Pin this manner

I want like when i click on the blue Text the particualr ur should get opened, how can i do that ??
Any Kind of Help is Highly Helpful
Thanks and Regards
Use this code
Hope it helps you….