Hello. I cant figure out how to insert http:// link inside email msg body. I want my game to send an email invitation, which will contain text and an active!! link to my game in App Store. But I only get a link with only plain text, but I need and clickable link
Here is my code :
- (void) showMail
{
if([MFMailComposeViewController canSendMail]) {
NSString* title = [[Strings instance] getString:@"mail_title"];
NSString* msg = [[Strings instance] getString:@"mail_msg"];
MFMailComposeViewController* mail = [[MFMailComposeViewController alloc] init];
mail.mailComposeDelegate = self;
[mail setSubject:title];
[mail setMessageBody:msg isHTML:YES];
[self presentModalViewController:mail animated:NO];
[ViewController pauseEngine];
[mail release];
} else {
NSString* title = [[Strings instance] getString:@"alert_mail_title"];
NSString* msg = [[Strings instance] getString:@"alert_mail_msg"];
NSString* cont = [[Strings instance] getString:@"continue"];
ShowAlert(self, title, msg, cont, nil);
}
}