mirror of https://github.com/docusealco/docuseal
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
644 B
14 lines
644 B
<% if @body.present? %>
|
|
<%= render 'custom_content', content: @body, submitter: @submitter, sig: @sig %>
|
|
<% else %>
|
|
<p><%= t('hi_there') %>,</p>
|
|
<p><%= t('please_check_the_copy_of_your_name_in_the_email_attachments', name: @submitter.submission.name || @submitter.submission.template.name) %>
|
|
<p><%= t('alternatively_you_can_review_and_download_your_copy_using_the_link_below') %></p>
|
|
<p>
|
|
<%= link_to @submitter.submission.name || @submitter.submission.template.name, submissions_preview_url(@submitter.submission.slug, { sig: @sig }.compact) %>
|
|
</p>
|
|
<p>
|
|
<%= t('thanks') %>,<br><%= @current_account.name %>
|
|
</p>
|
|
<% end %>
|