-
Bug
-
Resolution: Cannot Reproduce
-
Critical
-
None
-
Jenkins ver. 2.107.2 (installed on centos 7)
email-ext plugin 2.62
- email-ext-plugin in Pipeline script does not send email to group email id even though console says sending email. The same works for individual email id.
[Pipeline] emailextSending email to: groupEmail@BMC.com
- Also "cc:" & "bcc:" doesn't work at all from pipeline script, no matter how I try it. Any example of using CC, BCC will be really helpful.
def notifyTest() { emailext ( subject: "Test Email Ignore", body: """Hello All, JenkinsAdmin""", to: "groupEmailID@bmc.com", cc:'spatne@bmc.com', bcc:'swapnil_patne@bmc.com', from: "JenkinsAdmin@IS-Automation.bmc.com" ) }
I can send email to same email group from jenkins server through linux 'mail" command. So that's not an issue. Also any comment on usage of CC/BCC will be helpful.