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}""" Puedes ver los detalles aquí: ${env.BUILD_URL}"""
// Enviar correo // Enviar correo
emailext( mail to: recipients, subject: subject, body: body
to: recipients, // emailext(
subject: subject, // to: recipients,
body: body // subject: subject,
) // body: body
// )
} }