forked from MithunTechnologiesDevOps/maven-web-application
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b2d5a78
commit caf4894
Showing
1 changed file
with
11 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -71,12 +71,17 @@ stage('DeploytoTomcat'){ | |
} | ||
} | ||
stage('EmailNotification'){ | ||
mail bcc: '', body: '''Build Done | ||
Regards, | ||
Mithun Technologies | ||
9980923226''', cc: '[email protected]', from: '', replyTo: '', subject: 'Build Notification', to: '[email protected]' | ||
|
||
mail to: '[email protected]', | ||
bcc: '[email protected]', | ||
cc: '[email protected]', | ||
from: '[email protected]', | ||
replyTo: '[email protected]', | ||
subject: 'Build Notification' | ||
body: '''Build Done, Please check the build log for more details.. | ||
Regards, | ||
Mithun Technologies, | ||
9980923226''' | ||
} | ||
|
||
stage("SlackNotification"){ | ||
|