Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  $jirassimo.includeAttachments(".*.pdf")

will send all PDF fileds files from current issues as email attachments.

  $jirassimo.includeAttachments(".*.[pdf|doc]")

will send all PDF and DOC files from the issue as email attachments


Send attachments referenced in comment

...

#foreach ($att in $issue.addedComment.attachments)
  $jirassimo.includeAttachmentincludeAttachmentByFilename($att.idfilename)
#end

 


If you need to send the attachments of the latest comment in retrospective, say as a Canned message from issue page, then use the following construct:

...

In the example above, we refer to attachment via filename instead of attachment ID. Both techniques are valid for Raley to pick up comments.

 


    

Sending inline attachments

...

Raley can transparently handle this type of attachments and send them as inline images in your email notifications. This is default behaviour and is available out-of-the box without having to change anything in your notification configuration.