我试图从我的ios应用程序发送html(哪些javascript标签)电子邮件。没有错误,但javascript将无法正常工作
我的代码如下:
- (IBAction)sendDirection:(id)sender {
// Email Subject
NSString *emailTitle = @"example subject";
// Email Content
NSString *messageBody = @"<html><head><script>function initialize(){document.getElementById('directions').innerHTML = 'testing';}</script></head><body onload='initialize()'></div><span id='directions'></span></body></html>";
// To address
NSArray *toRecipents = [NSArray arrayWithObject:@"info@example.com"];
MFMailComposeViewController *mc = [[MFMailComposeViewController alloc] init];
mc.mailComposeDelegate = self;
[mc setSubject:emailTitle];
[mc setMessageBody:messageBody isHTML:YES];
[mc setToRecipients:toRecipents];
// Present mail view controller on screen
[self presentViewController:mc animated:YES completion:NULL];
}
答案 0 :(得分:1)
许多电子邮件客户端禁用JavaScript以防止XSS攻击和其他漏洞。您最好的选择是坚持使用简单的HTML + CSS,即使这样,一些有趣的 CSS功能也可能无法使用,具体取决于客户端。
很难说你在尝试使用JavaScript做什么,但最好是将所有编程保留在Objective-C中,并将邮件编辑器仅用于HTML标记。