Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using a jelly script with ext-email plugin. If I would like to add a picture myself how do I do that in a jelly script. I have tried alot of diffrent ways but still it is the wrong search way.

<IMG SRC="${JENKINS_HOME}email-templates/jenkins-logo/jenkins-logo/32x32/logotitle.jpg"/>
<IMG SRC="${rooturl}email-templates/jenkins-logo/jenkins-logo/32x32/logotitle.png"/>
<IMG SRC="${rooturl}Jenkins/email-templates/jenkins-logo/jenkins-logo/32x32/logotitle.gif"/>
<IMG SRC="C:/Jenkins/email-templates/jenkins-logo/jenkins-logo/32x32/logotitle.gif"/>

Please advise me.

share|improve this question

1 Answer

You can use userContent directory to use any external resources.

For your problem:

1. You should put "myself.png" to $JENKINS_HOME/userContent directory

2. In jelly script you may use <IMG SRC="${rooturl}/userContent/myself.png"/>

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.