我正在使用詹金斯管道。我正在使用这个插件发送带有使用模板的电子邮件通知。我重用了来自 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']]
}
请指教。