Jenkins 脚本化管道 - 是否可以发送邮件附件
Jenkins Scripted Pipeline - Is this possible to send a mail attachment
我打开了一张没有答案的旧工单:
How to send attachments through jenkins pipeline using mail
您知道是否可以使用 mail
发送电子邮件附件吗?我知道可以用 emailext
发送它,但它没有安装在我们的 Jenkins 上,团队不想安装它。
请让我知道这是否至少可行,因为如果不可能,这是向负责 Jenkins 的 IT 团队施加压力的一个很好的理由:)
提前致谢
不,您不能使用内置 mail
步骤发送附件。
它的参数非常有限
https://www.jenkins.io/doc/pipeline/steps/workflow-basic-steps/#mail-mail
为此你需要 email-ext
。
例如How to send email with attachment in jenkinsfile (Groovy Script)?
我打开了一张没有答案的旧工单: How to send attachments through jenkins pipeline using mail
您知道是否可以使用 mail
发送电子邮件附件吗?我知道可以用 emailext
发送它,但它没有安装在我们的 Jenkins 上,团队不想安装它。
请让我知道这是否至少可行,因为如果不可能,这是向负责 Jenkins 的 IT 团队施加压力的一个很好的理由:)
提前致谢
不,您不能使用内置 mail
步骤发送附件。
它的参数非常有限 https://www.jenkins.io/doc/pipeline/steps/workflow-basic-steps/#mail-mail
为此你需要 email-ext
。
例如How to send email with attachment in jenkinsfile (Groovy Script)?