I'm trying to use email notifications in my Jenkins pipeline. What I want is to send a notification on failed build and a notification on fixed build. The first is really easy with a try/catch
or catchError
but I haven't found a solution for the latter.
Is it possible to send a notification for fixed builds in a Jenkins Pipeline ?