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
0
votes
3 answers

Display HTML page inside mail body with Email-ext plugin

I'm facing a little problem using Email-ext plugin on Jenkins. I added the following line to inject my surefire html result to the email sent by the plugin : ${FILE,path="server/target/site/surefire-report.html"} and I put contenant type as HTML…
user3021914
  • 143
  • 1
  • 3
  • 13
0
votes
2 answers

Send multiple email messages using email-ext plugin in Jenkins

I am using Jenkins email-ext plugin to send email messages. I would like to send 2 email messages - one with 1 attachment that is sent to 1 person and a second email with another attachment sent to another person. Is that possible using this plugin?…
ashah
  • 193
  • 1
  • 4
  • 15
0
votes
1 answer

Send email in jenkins multiple times in a single job

I want to send email 2 times in a single job , one before starting the build and one after the build . I tried to do that with editable email plugin but it is not allowing me to configure it second time in the job . Any way to achieve this ?…
Keshu
  • 45
  • 9
0
votes
1 answer

Customizing email ext plugin trigger in jenkins

Im quite new in customizing email notifications for Jenkins. I wanted to send an email if build is failing for X hours (lets say if status is failed 2h after it was triggered. If this is complicated then sending an email after 5th failed build will…
gospodin
  • 1,133
  • 4
  • 22
  • 42
0
votes
2 answers

Jenkins - summarising test result changes from XUnit

I'm running NUnit tests using Jenkins (and the XUnit plugin), and Email-Ext to send out build result summaries. I'd like to be able to email out something like "3 new test failures: [Names of tests that failed]." I can't work out how to get which…
Stuart Moore
  • 681
  • 5
  • 32
0
votes
1 answer

Jenkins: Add deployed artifacts to mail-ext template

We use ArtifactDeployer plugin to copy some files on a remote location. Is it possible to include the download links to our mail-ext mail template? I fiddled around a bit with the HTML jelly template but I could not get it to work. Thanks
Ciprian
  • 3,533
  • 1
  • 18
  • 22
0
votes
2 answers

Executing Jenkins email-ext plugin not as last post-build action

I am using the email-ext plugin v.2.38.1 (post-build action "Editable Email Notification") on Jenkins v.1.566 to send e-mails after the build when certain conditions are met. When using multiple post-build actions, I got the impression that the…
Dirk
  • 9,381
  • 17
  • 70
  • 98
0
votes
2 answers

Get text from file and display in Jenkins email content

I have constructed Build version from a config file and saved this version number value to a file which resides in my workspace. The contents of this file will contain values like 2014.4.3.87 Now, I need to get this value on to the Jenkins…
Ajay S
  • 369
  • 3
  • 5
  • 12
0
votes
3 answers

Change default recipients for Jenkins email-ext plugin using Groovy script

I would like to be able to modify the list of default recipients of my Jenkins build emails based on a support rota. Currently I'm struggling to find out how to do this. So far I have tried this: import jenkins.model.*; import…
Ed .
  • 6,373
  • 8
  • 62
  • 82
0
votes
1 answer

Send email from dummy user in jenkins using email-ext plugin

I have configured email-ext plugin configuration in Jenkins with the valid SMTP settings. When I send the email after completion of job it uses above user(from:). Instead of that I want to show this mail is from dummy-user@dummy-domain.com. How…
rohitkadam19
  • 1,734
  • 5
  • 21
  • 39
0
votes
1 answer

Starting with Email-ext plug-in

problems using Email-ext using groovy/jelly script(Default) Fail to send emails attachment pattern doesn't work
prudviraj
  • 3,634
  • 2
  • 16
  • 22
0
votes
2 answers

"cancel" variable in groovy script not working in Jenkins Email-ext plugin

I'm having an issue where I want to cancel sending an email when a job gets into the FIXED state from the UNSTABLE state. So if a job was failing but got fixed, I want to send the message. But if a job is unstable (tests not passing) and gets fixed,…
perrocontodo
  • 113
  • 9
0
votes
1 answer

How to retrieve value of base64 string stored in a variable to Jenkins Extended E-mail Notification plugin

I am saving buildTimeGraph as an image (png) file in jenkins. I wanted to embed this image and send it via mail using Extended E-mail Notification plugin. Build is triggered via ant scripts. when using "CERTUTIL" in cmd and converting to base64. i…
Sreekanth
  • 380
  • 3
  • 14
0
votes
1 answer

How to show all the build history or recent 5 builds using Jelly in Jenkins

I was wondering if it is possible to send all the recent build history or atleast the latest 5 builds in Jenkins using the plugin email-ext. I am currently using Jelly as my email template. How am I going to achieve this?
user3282191
  • 203
  • 1
  • 2
  • 7
0
votes
1 answer

Default subject missing in the Jenkins email

I am adding recipients dynamically using the following in the pre-send script: import javax.mail.Message import javax.mail.internet.InternetAddress msg.addRecipient(Message.RecipientType.TO, new InternetAddress('recipient@example.com')) Now after…
1 2 3
14
15