在我的管道脚本中,我添加了一些环境变量,但无法在 email-ext 插件中访问它
env.MYVAR = 'HELLO'
emailext body: '${ENV,var="MYVAR"}', subject: 'subject', to: 'hello@world.com'
由于我正在从文件中读取电子邮件正文,因此我也尝试替换字符串,但在 org.codehaus.groovy.runtime.StringGroovyMethods.replaceAll 获得了 java.lang.NullPointerException
def myvariable = 'HELLO WORLD'
def content = readFile 'template.html'
content = content.replaceAll('MYVAR',myvariable)
...
任何想法?谢谢!