我试图将构建报告成功/失败发送给最后提交的开发人员。 下面是我可以将邮件发送给开发人员的脚本,但是Cc无法正常工作。我也想在邮件中添加主题。请帮我。
这是在詹金斯管道脚本中失败的步骤。
step([$class: 'Mailer', notifyEveryUnstableBuild: true, recipients: 'krugus@company.com', sendToIndividuals: true])
完整脚本-
try {
echo "${LAST_COMMITER_EMAIL}, anidf@company.com"
currentBuild.result = 'SUCCESS'
} catch (any) {
currentBuild.result = 'FAILURE'
throw any //rethrow exception to prevent the build from proceeding
} finally {
step([$class: 'Mailer', notifyEveryUnstableBuild: true, recipients:
'kargus@company.com', sendToIndividuals: true])
}