Attach log files in notification mail in jenkins pipeline workflow Attach log files in notification mail in jenkins pipeline workflow jenkins jenkins

Attach log files in notification mail in jenkins pipeline workflow


Install the email-extension plugin and try something like this in your pipeline workflow.

emailext attachLog: true, body: "${currentBuild.result}: ${BUILD_URL}", compressLog: true, replyTo: 'email@xxx.com',       subject: "Build Notification: ${JOB_NAME}-Build# ${BUILD_NUMBER} ${currentBuild.result}", to: 'email123@xxx.com'