Questions tagged [email-ext]

Email-ext is a Jenkins plugin, it allows you to configure every aspect of email notifications. You can customize when an email is sent, who should receive it, and what the email says.

Email-ext is a Jenkins plugin, it allows you to configure every aspect of email notifications. You can customize when an email is sent, who should receive it, and what the email says.

218 questions
2
votes
1 answer

Jenkins - Access to build logs, artifacts, git-commit change logs of upstream builds

Scenario: I have 3 Jenkins jobs. JOB-A, JOB-B and JOB-C. IF JOB-A is a success, it fires up JOB-B and same way, if JOB-B is a success it starts JOB-C. I have used extended email plugin which is configured to notify only if JOB-A or JOB-B fails…
Chandan Nayak
  • 10,117
  • 5
  • 26
  • 36
2
votes
1 answer

Customizing email ext plugin in jenkins

I was trying to create a custom message for build fails, i wanted to add the name of the user whose commit break the build, the commit message and a brief summary of the error. Can i write this in the 'Content' section in the configuration page or…
anand
  • 508
  • 4
  • 17
2
votes
1 answer

Jenkins - How do I pass Email-ext plugin's "Culprits" email list variable to a build step?

Culprits is the list of users who committed a change since the last non-broken build till now. The Jenkins Email-ext plugin is able to send an email to the culprits during a Post-Build action. I want to use the list of emails defined by Culprits in…
Bruce Tu
  • 127
  • 3
  • 8
2
votes
1 answer

How to loop through the console output in Jenkins using customized jelly script?

I am trying to write a jelly script in Jenkins Email-Ext that returns part of the console output. I am trying to loop through console output for 'failure'. Can someone give me a sample script or format for doing this using jelly script template?…
Geetha Lavanya
  • 195
  • 2
  • 9
2
votes
1 answer

Jenkins - Change subject in email-ext plugin

I am using email-ext plugin to trigger emails after the build fails or become unstable. The build becomes unstable when some of the tests fail and the build fails when the compilation fail. Can we use conditions to display different customized…
Fayzan
  • 141
  • 1
  • 4
  • 15
2
votes
1 answer

Is it possible to customize the subject of an email-ext generated email based on the build that finished

I know you can use a few tokens to customize the subject of the email, but I am looking for something a little more dynamic. I was hoping I could set an environment variable or write to a file somewhere from my build script, and have email-ext use…
D.C.
  • 15,340
  • 19
  • 71
  • 102
2
votes
2 answers

How to get custom metrics into jelly for email-ext?

Using Jenkins and email-ext, I have copied the "html" template and made it look the way I want for our build mail. What I'd like to do now is get some custom metrics in the build mail. Specifically, our build jobs call a number of PHP scripts that…
2
votes
1 answer

How can I get, on a per test case, all robotframework warnings in the email-ext groovy script?

Background Here is a background on the configuration I have tests written in Robot Framework I am using Jenkins and installed the robotframework and email-ext plugin I have a Jenkins job scheduled to run periodically The jenkins jobs runs robot…
bkhouri
  • 243
  • 6
  • 14
2
votes
2 answers

Send email to commiters from Jenkins email-ext on every build

I am using Jenkins v1.533, Email-Ext v2.34 and Jenkins Mercurial plugin v1.47, and I want to send emails to the all the mercurial commiters since the last build, for every build. In post-build actions, I added editable email notification and added…
stackular
  • 1,431
  • 1
  • 19
  • 41
2
votes
1 answer

How can I get the SVN log entry in Jenkins when sending email

I'm trying to create an automated build at work using Jenkins. We're using SVN for version control. When a build is successful I would like to send an email to my team saying... Person X has committed the following changes. How can I include the…
rusbi
  • 530
  • 1
  • 6
  • 17
2
votes
1 answer

How do I get the Junit test results using Email-ext in Jenkins

What do I need to add to the default html_gmail.jelly script to have it show the classes that were tested including how many tests were ran within each class? When a Jenkins job is complete you can drill down to the Junit Test Results in an address…
Laser Hawk
  • 1,988
  • 2
  • 23
  • 29
2
votes
3 answers

How to use filter domains with jenkins email-ext plugin?

Currently my Jenkins instance sends emails to committers (in case of failing builds). I wish to use the email-ext plugin and write a groovy script that will only send an email in case the commit belongs to a specific domain which I want to define.
OhadBasan
  • 797
  • 6
  • 15
2
votes
1 answer

How to display Parsed Console Output of Log Parser Plugin in email-ext plugin for Jenkins

Email-ext plugin provides build.getLog(100) method to display console output. Is there a similar method to display Parsed Console Output logs ?
Ankit
  • 159
  • 2
  • 9
2
votes
0 answers

What's wrong with following jelly script template for cppcheck in email-ext plugin of hudson

What's wrong with following jelly script template for cppcheck in email-ext plugin of hudson.
2
votes
1 answer

How to use Email-ext and Log Parser (with jelly script) pluins in Hudson/Jenkins?

How to use Log Parser with Email-ext plugin to get parsed console output via e-mail? I use ${JELLY_SCRIPT,template="html"} to get formatted message. After installing and configuring Log Parser Plugin, I still getting emails with not parsed console…