[JIRA] (JENKINS-51210) Jenkins Pipeline job is sending email with html tags when sends from master

2018-05-09 Thread da...@vanlaatum.id.au (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 David van Laatum commented on  JENKINS-51210  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Jenkins Pipeline job is sending email with html tags when sends from master   
 

  
 
 
 
 

 
 there is a content type parameter  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.3.0#73011-sha1:3c73d0e)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-51210) Jenkins Pipeline job is sending email with html tags when sends from master

2018-05-09 Thread rrajadev...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Raja R commented on  JENKINS-51210  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Jenkins Pipeline job is sending email with html tags when sends from master   
 

  
 
 
 
 

 
 David van Laatum can you please give some suggestions to fix.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.3.0#73011-sha1:3c73d0e)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-51210) Jenkins Pipeline job is sending email with html tags when sends from master

2018-05-09 Thread da...@vanlaatum.id.au (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 David van Laatum closed an issue as Not A Defect  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-51210  
 
 
  Jenkins Pipeline job is sending email with html tags when sends from master   
 

  
 
 
 
 

 
Change By: 
 David van Laatum  
 
 
Status: 
 Open Closed  
 
 
Resolution: 
 Not A Defect  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.3.0#73011-sha1:3c73d0e)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-51210) Jenkins Pipeline job is sending email with html tags when sends from master

2018-05-09 Thread rrajadev...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Raja R created an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-51210  
 
 
  Jenkins Pipeline job is sending email with html tags when sends from master   
 

  
 
 
 
 

 
Issue Type: 
  Bug  
 
 
Assignee: 
 David van Laatum  
 
 
Components: 
 email-ext-plugin  
 
 
Created: 
 2018-05-09 07:16  
 
 
Priority: 
  Critical  
 
 
Reporter: 
 Raja R  
 

  
 
 
 
 

 
 Hi Team, We configured our Jenkins master in Windows machine and slave is in Linux machine. I configured jenkins pipeline job in master node, I restricted this job to run my slave (Linux). All the stages are working fine, but it is sending email with html tag. Do we need to configure content-type in pipeline configuration? PFB my pipeline script:   node('Linux') {     stage "Email Notification"     emailext (             to: 'rajasekaran.radhakrish...@ge.com',     subject: "Python-Api-k8s-Test Email Notification",     body: """  
table{
    border: 1px solid black;
    border-collapse: collapse;
    background-color: #D3FCFB;
}

th, td {
    border: 1px solid black;
    padding: 5px;
    text-align: left;
    }
    
th, td#t01{
    border: 1px solid black;
    padding: 5px;
    text-align: left;
    background-color: #2890C8;
    }
    
    
Python-Api-k8s-Test Build Summary       Job Status     Success         Project     Project1         Environment     Test          Docker Image Version     imagename:${env.BUILD_NUMBER}         BUILD Logs     ${env.BUILD_URL}     """,     recipientProviders: [[$class: 'DevelopersRecipientProvider']]   )      }   Regards, Raja