Jenkins emailext不显示html中管道的参数

时间:2018-08-22 10:13:18

标签: jenkins email-ext jenkins-email-ext

是否可以显示在管道中运行的参数,这些参数是使用emailext插件在我正在格式化为电子邮件正文的html中运行的?

这就是我所拥有的:

def mailSubject = "Status of ${buildStatus}"
def mailContent = readFile 'mail.html'

wrap([$class: 'BuildUser']) {
            emailext(to: "${BUILD_USER_EMAIL}", replyTo: "donotreply@test.com",
            mimeType: 'text/html', subject: mailSubject, body: mailContent);

}

当我尝试添加在管道中创建的参数时,它不起作用。可能吗当使用在管道之前创建的环境变量或参数时,它会起作用。

谢谢

0 个答案:

没有答案