gpt4 book ai didi

javascript - 在 ios 应用程序中发送包含 javascript 的 html 电子邮件

转载 作者:行者123 更新时间:2023-11-29 02:57:50 24 4
gpt4 key购买 nike

我正在尝试从我的 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];

}

最佳答案

许多电子邮件客户端禁用 JavaScript 以防止 XSS 攻击和其他漏洞。最好的选择是坚持使用纯 HTML+CSS,即使这样,一些更有趣的 CSS 功能可能无法使用,具体取决于客户端。

很难说出您要使用 JavaScript 做什么,但最好将所有编程都保留在 Objective-C 中,并且仅将邮件编辑器用于 HTML 标记。

关于javascript - 在 ios 应用程序中发送包含 javascript 的 html 电子邮件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23679859/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com