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
toEmailsproperty: as I can see,bccis indeed ignored whentoEmailsis used, even though the email gets sent successfully.Can you please try changing
toEmailsto justto? That's the propertynotifications.sendEmailsexpects 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
toEmailsproperty in the code samples withtoto prevent anyone from stumbling on the same issue: https://youtrack.jetbrains.com/issue/RDOC-3504.