Details
-
Type:
Improvement
-
Status: Closed (View Workflow)
-
Priority:
Minor
-
Resolution: Fixed
-
Component/s: email-ext-plugin
-
Labels:None
-
Similar Issues:
Description
When using the ENV content, ${ENV,var="path"} works but ${ENV,var=path} does not. Improve documentation so that it's clear that quotes are required.
Attachments
Issue Links
- duplicates
-
JENKINS-2413 [Email plugin] Read parameters/variables used during build
-
- Closed
-
Not worked in the below scenario.
I have a string parameter called:
SERVERNAME
Override this value through one of my build steps:
XX="MY_SERVER"
SERVERNAME=$XX
In the extended email I have tried the below :
$SERVERNAME [Not worked]
${SERVERNAME} [Not worked]
$
{ENV,var=SERVERNAME} [Not worked]