August 2017
Intermediate to advanced
332 pages
9h 16m
English
The most classic way to notify about the Jenkins build status is to send emails. The advantage of this solution is that everybody has a mailbox; everybody knows how to use the mailbox; and everybody is used to receiving information by the mailbox. The drawback is that usually there are simply too many emails and the ones from Jenkins quickly become filtered out and never read.
The configuration of the email notification is very simple; it's enough to:
The pipeline configuration can be as follows:
post { always { mail to: 'team@company.com', subject: "Completed Pipeline: ${currentBuild.fullDisplayName}", ...Read now
Unlock full access