BCC in workflows
Hi!
According to an old post, BCC was not supported in 2018.
Is it supported now in 2025? If yes, how I can implement it in my workflow?
Simple bcc is not working as expected:
A little snippet from my code:
fromName: "Budapest Airport Operations",
toEmails: usersToNotify,
bcc: ['loremipsum@bud.hu'],
subject: issue.id + ' - lorem ipsum',
body: …
Please sign in to leave a comment.
Hi Malte Bruweleit,
Curiously, it seems the issue might be with the
toEmails
property: as I can see,bcc
is indeed ignored whentoEmails
is used, even though the email gets sent successfully.Can you please try changing
toEmails
to justto
? That's the propertynotifications.sendEmails
expects according to the documentation: https://www.jetbrains.com/help/youtrack/devportal/v1-notifications.html#sendEmail.Hi Julia,
The switch to “to” in syntax indeed works like a charm!
Thanks for your reply!
Hi Malte Bruweleit,
You are welcome, I'm glad to hear that helped!
I've also asked our documentation team to replace the
toEmails
property in the code samples withto
to prevent anyone from stumbling on the same issue: https://youtrack.jetbrains.com/issue/RDOC-3504.