From 153c75df2a702c2829c33ce8a2b5ba4f06df4e4f Mon Sep 17 00:00:00 2001 From: MatOgr Date: Mon, 2 May 2022 12:00:26 +0200 Subject: [PATCH] Emailext spelling fix --- jenkins/training.Jenkinsfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/jenkins/training.Jenkinsfile b/jenkins/training.Jenkinsfile index f96bf25..a444da1 100644 --- a/jenkins/training.Jenkinsfile +++ b/jenkins/training.Jenkinsfile @@ -43,19 +43,19 @@ pipeline { post { success { - emailtext body: 'SUCCESS', subject: 's478841-training', to: 'e19191c5.uam.onmicrosoft.com@emea.teams.ms' + emailext body: 'SUCCESS', subject: 's478841-training', to: 'e19191c5.uam.onmicrosoft.com@emea.teams.ms' } failure { - emailtext body: 'FAILURE', subject: 's478841-training', to: 'e19191c5.uam.onmicrosoft.com@emea.teams.ms' + emailext body: 'FAILURE', subject: 's478841-training', to: 'e19191c5.uam.onmicrosoft.com@emea.teams.ms' } unstable { - emailtext body: 'UNSTABLE', subject: 's478841-training', to: 'e19191c5.uam.onmicrosoft.com@emea.teams.ms' + emailext body: 'UNSTABLE', subject: 's478841-training', to: 'e19191c5.uam.onmicrosoft.com@emea.teams.ms' } changed { - emailtext body: 'CHANGED', subject: 's478841-training', to: 'e19191c5.uam.onmicrosoft.com@emea.teams.ms' + emailext body: 'CHANGED', subject: 's478841-training', to: 'e19191c5.uam.onmicrosoft.com@emea.teams.ms' } } }