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.

learn more… | top users | synonyms

0
votes
2answers
200 views

Using Jenkins and email-ext. How can I add SVN_REVISION_1 to the email?

I'm building a project with multiple SVN repositories. Using the Email-ext plugin to email when a job is successfull or failed. When I use the token ${SVN_REVISION} all I get is the number 400, ...
0
votes
2answers
437 views

How will I write a Jelly script for BUILD_LOG_REGEX in Jenkins/Hudson Email-Ext Plugin?

I am trying to write/modify a jelly script in Jenkins Email-Ext that returns the build log. I am trying to filter the log with BUILD_LOG_REGEX for regular expressions. Can someone give me a sample ...
0
votes
2answers
295 views

Unable to get email-ext.hpi to work in hudson

I have just setup hudson and have begun playing around with it. I have downloaded the email-ext.hpi into the the folder $HUDSON_HOME\plugins I have restarted hudson post-step1 ( i am following this ...
-1
votes
2answers
91 views

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 ...
2
votes
1answer
330 views

How can I write a Hudson/Jenkins email-ext template in JavaScript?

I want to write a custom email template for Jenkins using the email-ext plugin. The documentation mentions I can use JavaScript for this, but has no further JavaScript-specific documentation. I would ...
0
votes
1answer
55 views

How to get Jenkins to show skipped tests using email-ext?

I am using email-ext plugin within Jenkins to display passed failed, and the email has a nice blue for passed methods and red for failed. What it is not including is the Ignored tests within a class. ...
0
votes
1answer
171 views

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 ...
0
votes
1answer
145 views

Email-ext Pre script usage

How can I write a prescript to check whether an email is going to be triggered because of an upstream project cause (commit-job A). If it does trigger, I want to cancel the email triggering in job ...
2
votes
0answers
144 views

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. <!-- CppCheck TEMPLATE --> <!--<j:set var="cppClassName" value="CppcheckBuildAction" ...
1
vote
0answers
207 views

Sending Cppcheck result/report on email from Jenkins using email-ext plugin

I'm trying to send cppcheck report on an email using email-ext plugin from a Jenkins build. So far, only way seems to be by creating a custom template -- jelly or groovy. From this post -- "Can I ...
0
votes
0answers
18 views

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 ...
0
votes
0answers
37 views

How to send dynamic URL using email-ext Jenkins plugin?

Sending images via "Default Content"in email-ext works when URL is absolute. ${JELLY_SCRIPT,template="html"} img src="some URL/image.png" How can an absolute URL be converted to dynamic URL such ...
0
votes
0answers
125 views

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 ?
0
votes
0answers
91 views

how to define an email template to sent error stack trace to module owner?

I have defined an email template like this: version changes: ..... Unstable:${CHANGES_SINCE_LAST_UNSTABLE,reverse=true} Trigger reason:${CAUSE} Test_Counts:${TEST_COUNTS} ...
0
votes
0answers
60 views

How do I see detailed log messages from Jenkins emailing?

I am having trouble getting email-ext working. I've looked at the system log ("Manage Jenkins"/"System Log"), and it shows the job succeeded in running, but nothing about how email works. Is there ...
0
votes
0answers
177 views

Email-ext Jenkins plugin localization

I'm using Jenkins as CI tool, and Email-ext plugin to send e-mail notification. Jenkins runs on Win2003 with En locale, I'm launching job from browser with Ru locale. So I get e-mail with russian ...
0
votes
0answers
717 views

Example of groovy template to use the email-ext plugin in Jenkins with TFS

I have scoured the internet for the past day trying to find a useful example, or documentation for how to integrate groovy with TFS when creating an email template for Jenkins / Hudson. I have come ...