电子邮件正文中的超链接无法在iphone中运行

时间:2012-04-05 10:59:12

标签: iphone html email html-email mfmailcomposeviewcontroller

我使用以下代码在电子邮件正文中显示超链接。但它只显示邮件正文中的文本。当我点击它时。没有任何反应。

-(IBAction)emailToFriend:(id)sender
{
    NSLog(@"E-Mail...");
    MFMailComposeViewController *controller = [[MFMailComposeViewController alloc] init];
    controller.mailComposeDelegate = self;

    [controller setSubject:@"My Subject"];



    [controller setMessageBody:@"<a href=\"http://www.google.com\">http://www.google.com</a>" isHTML:YES]; 

    [self presentModalViewController:controller animated:YES];
    [controller release];

}

有人能告诉我这里有什么问题吗?我检查了问题MFMailComposeViewController : how do I embed a clickable URL link into the email message body它没有帮助我

1 个答案:

答案 0 :(得分:8)

在发送链接之前,它无法点击。这只是纯文本。但是,在发送电子邮件后,接收方将能够单击该链接(电子邮件程序使其可单击)。