Email-Ext插件模板未更新

时间:2019-06-04 09:55:07

标签: jenkins groovy jenkins-pipeline jenkins-groovy jenkins-email-ext

我正在使用詹金斯管道。我正在使用此插件通过使用模板发送电子邮件通知。我重用了来自github的现有模板。

我放置了模板$Jenkins_Home\email-templates\

但是我的更改未在电子邮件中更新。仍然收到旧内容。 示例代码:

def call(email, subject, content, attachment = null){   
def attachBuildLog = currentBuild.result != 'SUCCESS'
emailext attachLog: attachBuildLog,
         body: '${SCRIPT, template="groovy-html"}',
         mimeType: 'text/html',
         subject: "${subject}",
         to: "${email}",
         replyTo: "${email}",
         recipientProviders: [[$class: 'DevelopersRecipientProvider']]
}

请告知。

1 个答案:

答案 0 :(得分:0)

将现有模板重命名为自定义文件名即可解决此问题。