The Email-ext plugin works great when it comes to sending the email.
To implement the conditions to match before sending the email ,I found it has the feature to write presend scripts. But I cannot find the proper documentations for how to write the script.
My requirement:
If the branch being deployed is master or develop than I want to use one set of email recipients else other set of emails.
Provide me the right way to get going with the scripts
- Can we write bash script there
- Can we use the variables set in bash script to the presend script
2) you can use any variables you want, Jenkins env variables or any variable you add with the help of "env inject" plugin.
Regarding your question:
Example:
1)execute shell step in post build actions
2) Using EnvInject Plugin, add step "Inject environment variables" and specify previously created recipient.txt
Now you can use DEV_RECIPIENT or MASTER_RECIPIENT( depends on branch built) by ${DEV_RECIPIENT} or ${MASTER_RECIPIENT}
3) just paste this variable in extEmail step field "Recipient List": ${DEV_RECIPIENT}