问题
Hi I am trying to send email notification from jenkins pipeline but it is not sending any email. I am using the below script to send email:
pipeline {
agent any
stages{
stage('Test'){
steps{
echo 'Ok'
}
}
stage('Email'){
steps{
emailext (to: 'abc@xyz.com', replyTo:'abc@xyz.com', subject: "Email report from - '${env.JOB_NAME}'", body: 'test')
}
}
}
}
The pipeline is being executed but I am not receiving any mail.
来源:https://stackoverflow.com/questions/60996636/sending-email-from-jenkins-pipeline