Email-Ext 插件模板未更新

Email-Ext plugin templates not updated

我正在使用 jenkins 管道。我正在使用此插件通过使用模板发送电子邮件通知。我重复使用了 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']]
}

请指教

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