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.
22 lines
791 B
22 lines
791 B
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title></title>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
<style></style>
|
|
</head>
|
|
<body dir="<%= TextUtils.rtl?(yield) ? 'rtl' : 'auto' %>">
|
|
<%= yield %>
|
|
<% footer_account = @current_account || (@submitter&.account) || (@submission&.account) %>
|
|
<% if footer_account %>
|
|
<% footer_value, _locked = footer_account.config_value(AccountConfig::EMAIL_FOOTER_MESSAGE_KEY) %>
|
|
<% if footer_value.present? %>
|
|
<div style="margin-top: 24px; padding-top: 12px; border-top: 1px solid #e5e7eb; color: #6b7280; font-size: 12px; white-space: pre-line;">
|
|
<%= footer_value %>
|
|
</div>
|
|
<% end %>
|
|
<% end %>
|
|
<%= render partial: 'shared/mailer_attribution' %>
|
|
</body>
|
|
</html>
|