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.
30 lines
1.5 KiB
30 lines
1.5 KiB
<div class="collapse collapse-plus bg-base-200 overflow-visible">
|
|
<input type="checkbox">
|
|
<div class="collapse-title text-xl font-medium capitalize">
|
|
<div>
|
|
<%= t('signature_request_reminder_email') %>
|
|
</div>
|
|
</div>
|
|
<div class="collapse-content">
|
|
<%= form_for AccountConfigs.find_or_initialize_for_key(current_account, AccountConfig::SUBMITTER_INVITATION_REMINDER_EMAIL_KEY), url: settings_personalization_path, method: :post, html: { autocomplete: 'off', class: 'space-y-4' } do |f| %>
|
|
<%= f.hidden_field :key %>
|
|
<%= f.fields_for :value, Struct.new(:subject, :body, :reply_to).new(*f.object.value.values_at('subject', 'body', 'reply_to')) do |ff| %>
|
|
<div class="form-control">
|
|
<%= ff.label :subject, t('subject'), class: 'label' %>
|
|
<%= ff.text_field :subject, required: true, class: 'base-input', dir: 'auto' %>
|
|
</div>
|
|
<%= render 'personalization_settings/email_body_field', ff:, config: f.object %>
|
|
<% if can?(:manage, :reply_to) || can?(:manage, :personalization_advanced) %>
|
|
<div class="form-control">
|
|
<%= ff.label :reply_to, t('reply_to'), class: 'label' %>
|
|
<%= ff.email_field :reply_to, class: 'base-input', dir: 'auto', placeholder: t(:email) %>
|
|
</div>
|
|
<% end %>
|
|
<% end %>
|
|
<div class="form-control pt-2">
|
|
<%= f.button button_title(title: t('save'), disabled_with: t('saving')), class: 'base-button' %>
|
|
</div>
|
|
<% end %>
|
|
</div>
|
|
</div>
|