
Is there any way to get a hyperlink on email text using mfmailComposeViewController in my iPhone application?

To get link on the text, you need to make it HTML enable. MFMailComposeViewController also support it. See the below given code...
MFMailComposeViewController *composer = [[MFMailComposeViewController alloc] init]; composer.mailComposeDelegate = self; [composer setSubject:subject]; [composer setMessageBody:message isHTML:YES];
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.