From bfcaf7bc979373e7a4ce429883df4290efa26fee Mon Sep 17 00:00:00 2001 From: Nicolas Arenas Date: Tue, 18 Mar 2025 01:30:39 +0100 Subject: [PATCH] Change function to notify bt email --- vars/notifyBuildStatus.groovy | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/vars/notifyBuildStatus.groovy b/vars/notifyBuildStatus.groovy index f701679..0d9cd3d 100644 --- a/vars/notifyBuildStatus.groovy +++ b/vars/notifyBuildStatus.groovy @@ -8,9 +8,10 @@ def call(String recipients) { Puedes ver los detalles aquĆ­: ${env.BUILD_URL}""" // Enviar correo - emailext( - to: recipients, - subject: subject, - body: body - ) -} \ No newline at end of file + mail to: recipients, subject: subject, body: body + // emailext( + // to: recipients, + // subject: subject, + // body: body + // ) +}