Jenkins - Email-ext plugin display name of job in email
问题 Is there an easy way to include the display name of the job in the email subject? Maybe there is an environment variable for this? I know it should be possible because the default functionality (email notification) in jenkins already provides this information in the email subject. 回答1: Yes, You can use the built-in environment JOB_NAME , other available environments you can use are like BUILD_STATUS , BUILD_NUMBER , etc. [${BUILD_STATUS}]${JOB_NAME} Build #${BUILD_NUMBER} As always, you can