我正在尝试将 HTML 页面内容显示到 Jenkins 电子邮件的正文中,我将以下代码添加到可编辑电子邮件插件的默认内容部分:
${FILE,path="/target/surefire-reports/html/index.html"}
我还尝试将以下代码添加到电子邮件插件中的预发送脚本:
def reportPath = build.getWorkspace().child("HealthTestResults.html")
msg.setContent(reportPath.readToString(), "text/html");
这两种方式都不起作用,我仍然收到空邮件。