init commit
parent
b71925b509
commit
e7a47424a6
|
|
@ -87,16 +87,20 @@
|
||||||
|
|
||||||
}
|
}
|
||||||
stage('Send report') {
|
stage('Send report') {
|
||||||
try{
|
steps {
|
||||||
mail subject: env.JOB_NAME,
|
script {
|
||||||
body: 'test',
|
try {
|
||||||
to: 'rene.forstner@nttdata.com',
|
mail subject: env.JOB_NAME,
|
||||||
replyTo: 'rene.forstner@nttdata.com',
|
body: 'test',
|
||||||
from: 'coco-apm@bmw.de'
|
to: 'rene.forstner@nttdata.com',
|
||||||
|
replyTo: 'rene.forstner@nttdata.com',
|
||||||
}
|
from: 'coco-apm@bmw.de'
|
||||||
catch ( mailExc ){
|
|
||||||
echo "Sending Email Failed: ${mailExc}"
|
}
|
||||||
|
catch ( mailExc ){
|
||||||
|
echo "Sending Email Failed: ${mailExc}"
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue