标签: jenkins groovy email-ext jenkins-email-ext
我正试图通过Groovy使用emailext发送html报告。
我不不想使用Jenkins UI。我们所有的脚本都是通过常规代码触发的。
这是我的常规代码
emailext( to: 'john@foo.com', subject: 'foo report', body: <path/to/report.html> --> How do i specify html file here? )
我是否必须指定其他参数来表示其html文件? 谢谢!