You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
Hello,
Can we use an environnent variable for the email notification recipient ?
I don't want to configure a group or a single email address but rather use a dynamic value like the project developers[1], or the author of the commit that triggered the build linked to the deployment [2].
[1] https://maven.apache.org/pom.html#Developers
[2] Saved in a `.properties` file artifact in the build plan.
Hi @gervaisb,
You can build your own message and use the terminal (Script task) to send it based on your environment variables, but you cannot use dynamic addresses for the Bamboo default notification, unfortunately.
You will probably find multiple ways to send an email using the terminal. One of them is the Mutt command (assuming you are using a Unix-like system). This is an example of use:
mail_list="first@mail.address second@mail.address"
mutt -e 'set content_type="text/html"' -s "subject" < mail_file.html $mail_list
⚠️ Running this command will require that your agent or Bamboo server has its mail server properly configured (not Bamboo, but the OS).
There is also a feature request to create a task specifically designed for sending emails: [BAM-17085] Send customized email via Bamboo Task - Create and track feature requests for Atlassian products.
I hope it helps.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.