In Jenkins pipeline I'm using email-ext with emailextrecipients
as follows:
emailext(
subject: email_subject,
mimetype: 'text/html',
to: emailextrecipients([[$class: 'CulpritsRecipientProvider'], [$class: 'RequesterRecipientProvider']]),
body: email_body
)
And I want to add a specific email address, e.g. [email protected], to the list generated using emailextrecipients
. I want that addressee (me or a manager or admin) to always get the email, but the addressee might be a culprit or requester and I don't want emailext to send two emails to that addressee.
Is there a way to merge '[email protected]' with emailextrecipients
?