jenkins do not send emails to multiple recipients

前端 未结 5 2011
南笙
南笙 2021-02-19 15:39

I use Jenkins email-ext plugin to send emails when a build starts. When I specified only one recipient of such emails, everything worked smoothly - I got emails.

But wh

5条回答
  •  不思量自难忘°
    2021-02-19 15:57

    what worked for me was giving a comma and space between email addresses, such as:

    x1@jenkins.com, x2@jenkins.com, x3@jenkins.com
    

    XML representation of the Jenkins job looks as:

    
    ...
     
      
       x1@jenkins.com, x2@jenkins.com, x3@jenkins.com
       false
       true
       true
      
     
    
    

    It has been sending mails all good with this.

提交回复
热议问题