Change function to notify bt email

main
Nicolas Arenas 2025-03-18 01:30:39 +01:00
parent 84e6d988cc
commit bfcaf7bc97
1 changed files with 7 additions and 6 deletions

View File

@ -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
)
}
mail to: recipients, subject: subject, body: body
// emailext(
// to: recipients,
// subject: subject,
// body: body
// )
}