Backlog Request: Attach Files to Workflow Notifications

@Peter-Schmidt could you please add a backlog request to attach files to workflow notifications

Hi @lee.relianceit - We have this one already:
https://treepl.co/public-backlog-state/request/attach-form-uploads-to-workflow-notifications

And here is the forum discussion: Backlog Request: Attach form uploads to workflow notifications

– Would that cover what you would like, otherwise please let me know and I can add more info to it :+1:

1 Like

As an interim solution you can link to the file from the notification email with the following snippet (replace contents of [ ] including [ ]).

{% if this.formSubmissionData.fields.custom.[THE NAME OF YOUR UPLOAD FILED LOWER CASE WITH NO SPACES].value != '' %}
      <a href="https://[YOUR DOMAIN].com/{{ this.formSubmissionData.fields.custom.[THE NAME OF YOUR UPLOAD FILED LOWER CASE WITH NO SPACES].value }}">Link to File Upload</a>
{% endif %}
1 Like