Version Differences for Notification Templates

(AHPSCRIPTS-140)
(Include Issue Data in E-Mails)
Line 213:
  </table>     </table>  
  #end</pre>    #end</pre> 
       
    + = Emailing Dependencies =  
    + * This is a snippet for the body section of an email. It could be built out to provide links to those builds, but as is, it's pretty simple and provides the name of the dependency as well as the most recent stamp (build number) applied to it.  
    + ==== AHPSCRIPTS-39 ====  
    + <pre>#set($buildLife = $workflow.BuildLife)  
       
    + Dependencies:  
    + #foreach($dep in $buildLife.dependencyBuildLifeArray)  
    + $dep.codestationProject.name ($dep.latestStampValue)  
    + #end</pre>