ashah
ashah

Reputation: 193

Sending bcc email recipient in Jenkins using email-ext plugin

I am using the email-ext plugin in Jenkins to send email messages upon build completion in Jenkins.

I want to include certain email addresses as bcc and am using the following convention when specifying email addresses:

[email protected],bcc:[email protected],cc:[email protected]

The first and last emails get sent correctly. However, the bcc email gets sent in the "To" section of the email with "b" prefixed to the address. So instead of [email protected], it tries (unsuccessfully) to send an email to [email protected].

I looked at the email-ext issue list related to bcc and cc and did not find anything similar to this. Therefore I am posting it here.

Thanks in advance.

Upvotes: 2

Views: 5165

Answers (1)

centic
centic

Reputation: 15882

Handling bcc was added in this commit on Feb 24, 2014, according to the changelog there was a related fix released as part of 2.40.3 on May 20, 2015.

So I would first check if you have at least this version installed and if not try to upgrade to the latest one to see if it works then.

Upvotes: 1

Related Questions