The tag refers to `email-ext` plugin for Jenkins, which extends email sending options.
Questions tagged [jenkins-email-ext]
108 questions
1
vote
1 answer
Jenkins- Rendering html page in email
Sending email using Editable Email Notification plugin in Jenkins
Following is the complete folder structure of the index.html file contains folders related to CCS, styling and images for the html page.
After receiving a mail- email is not loading…

Saagar
- 794
- 3
- 20
- 41
1
vote
1 answer
How to format Body of Jenkins emal which is taken from text file
I have created a jenkins job in which it will send the mail notification and I tried to embed the content of text file to body of email.
BUILD : $PROJECT_NAME - $BUILD_STATUS …

user2439278
- 1,222
- 7
- 41
- 75
1
vote
3 answers
Environment variables added in pipeline not accessible in email-ext plugin
In my pipeline script, I added a few environment variables but wasn't able to access it in the email-ext plugin
env.MYVAR = 'HELLO'
emailext body: '${ENV,var="MYVAR"}', subject: 'subject', to: 'hello@world.com'
Since I am reading the email body…

qmo
- 3,128
- 3
- 17
- 23
1
vote
2 answers
Display HTML page content into Jenkins email
I'm trying to display HTML page content into the body of the Jenkins email, i added the following code to the default content section in Editable Email plugin:
${FILE,path="/target/surefire-reports/html/index.html"}
also i tried to add the…

Roni
- 604
- 2
- 6
- 12
1
vote
2 answers
Error in sending mail using Email-Ext plugin jenkins
My jenkins version is Jenkins ver. 1.642.4 & Token Macro version is 1.12. When I try to set-up Email-ext plugin, mail sending fails due to the below following error.
ERROR: Step ‘Editable Email Notification’ aborted due to exception:…

Aarish Ramesh
- 6,745
- 15
- 60
- 105
1
vote
0 answers
Jenkins Editable email notification - How to add user to watch list using system groovy
In Jenkins, I would like to be able to add multiple users to the watch list of certain job so that these users don't have to go to the job and click watch job by themselves.
import jenkins.model.*;
import hudson.model.*;
import…

Kevin Yu
- 85
- 1
- 11
0
votes
1 answer
How do I configure the email-ext-plugin from a JobDsl script?
We are currently configuring our email-ext plugin in Jenkins manually (as documented). For various reasons, we'd like to move this to a script being run (using the jobDsl step). Probably most importantly, we need to be able to configure the smtp…

JesperE
- 63,317
- 21
- 138
- 197
0
votes
1 answer
Not able to send email in jenkins using aws ses
I am building a pipeline in jenkins. Where an email is always sent as a post action
I set up smtp in aws using SES and installed email extension plugin in jenkins, I configured the email extension plugin using smtp server details. My SES is in…

user22087029
- 3
- 3
0
votes
0 answers
How can I use emailext plugin in jenkins agent?
I'm running Jenkins controller on ECS, and agent node is run on fargate.
pipeline {
agent {
node {
label 'agent-fargate'
}
}
...
and when test stage failed, I want to send email with…

juny
- 3
- 2
0
votes
0 answers
Parsing console log from Jenkins and sending on email
I am trying to find solution for parsing logs from jenkins console and add matched logs into email body and send it via emailext.
I have following log lines in my console. I need to extract all matching lines and add in message…

deewreck
- 113
- 7
0
votes
0 answers
Plugin Extended E-mail Notification does not see the groovy-template file in $ {JENKINS_HOME} / email-templates /
Hello recently I started using jenkins Extended E-mail Notification plugin. Based on the example groovy template, I decided to create my own template for e-mail messages. First, I created the catalog $ {JENKINS_HOME} / email-templates / and gave it…

haker146
- 61
- 5
0
votes
0 answers
Jenkins Email Trigger condition
I have configured an editable email plugin and it works well. However, in some cases (which I really don't know) the emails are not being triggered.
I configured it to send email in both Success and Failure - Any case
The console output is as…

Paresh Varde
- 1,084
- 3
- 16
- 39
0
votes
0 answers
No SMTP credentials option
I am trying to set up the "Extended E-mail Notification" in jenkins. My plugin version is 2.89
However in the setup i dont see the SMTP Authentication checkbox, instead it just has this credentials tab. Credentials
I tried to use my office365…
0
votes
0 answers
SMTP authentication checkbox is not displayed in the e-mail extension plugin in Jenkins
The e-mail extension plugin in Jenkins is not showing the SMTP authentication checkbox whereas it shows the credentials drop-down only. How can I set up the SMTP credentials? See the attached screenshot below.
enter image description here
enter…

DeviD
- 1
- 1
0
votes
1 answer
How to split a string in Jenkins email attachment?
I want to run the script for two products product1 and product2 , the command contains string product1 product2 and runs script for two products as expected. The command looks like below on console:
pytest -v -s --browser_name "MobileChrome" --env…

sagarkamthane
- 33
- 6