Hi
I have a Form that when submitted, creates a ticket within JSM and also creates a Trello card on one of my vendors Trello Board and attaches an email and creates another attachment with the Form Responses PDF.
In the last few days, the Form Responses PDF no longer attaches separately and my vendor can not view the PDF if they click the link in the attached email as they do not have permission.
Does anyone know why the Form Responses PDF is no longer being attached?
This is the code used for the automation:
<ul>
{{#issue.attachment}}
{{#if(equals(mimeType, "application/pdf"))}}
<li><a href="{{content}}">{{filename}}</a></li>
{{/}}
{{/issue.attachment}}
</ul>
Thanks
Jason D
This is the automation code used:
<ul>
{{#issue.attachment}}
{{#if(equals(mimeType, "application/pdf"))}}
<li><a href="{{content}}">{{filename}}</a></li>
{{/}}
{{/issue.attachment}}
</ul>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.