|
|
|
@ -1,7 +1,7 @@
|
|
|
|
<div class="form-control">
|
|
|
|
<div class="form-control">
|
|
|
|
<% is_smtp_configured = Accounts.can_send_emails?(current_account) %>
|
|
|
|
<% is_smtp_configured = Accounts.can_send_emails?(current_account) %>
|
|
|
|
<%= f.label :send_email, for: uuid = SecureRandom.uuid, class: 'flex items-center cursor-pointer' do %>
|
|
|
|
<%= f.label :send_email, for: uuid = SecureRandom.uuid, class: 'flex items-center cursor-pointer' do %>
|
|
|
|
<%= f.check_box :send_email, id: uuid, class: 'base-checkbox', disabled: !is_smtp_configured, onchange: "window.message_field && message_field.classList.toggle('hidden', !event.currentTarget.checked)" %>
|
|
|
|
<%= f.check_box :send_email, id: uuid, class: 'base-checkbox', disabled: !is_smtp_configured, checked: is_smtp_configured %>
|
|
|
|
<span class="label">Send Email</span>
|
|
|
|
<span class="label">Send Email</span>
|
|
|
|
<% end %>
|
|
|
|
<% end %>
|
|
|
|
<% unless is_smtp_configured %>
|
|
|
|
<% unless is_smtp_configured %>
|
|
|
|
@ -18,20 +18,3 @@
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<% end %>
|
|
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<% unless AccountConfig.exists?(key: AccountConfig::SUBMITTER_INVITATION_EMAIL_KEY) %>
|
|
|
|
|
|
|
|
<div id="message_field" class="card card-compact bg-base-200 hidden">
|
|
|
|
|
|
|
|
<div class="card-body">
|
|
|
|
|
|
|
|
<div class="form-control space-y-2">
|
|
|
|
|
|
|
|
<span class="label-text">Hi there,</span>
|
|
|
|
|
|
|
|
<autoresize-textarea>
|
|
|
|
|
|
|
|
<%= f.text_area :message, value: format(SubmitterMailer::DEFAULT_MESSAGE, name: template.name), required: true, class: 'base-textarea !rounded-lg w-full' %>
|
|
|
|
|
|
|
|
</autoresize-textarea>
|
|
|
|
|
|
|
|
<span class="label-text">
|
|
|
|
|
|
|
|
Thanks,
|
|
|
|
|
|
|
|
<br>
|
|
|
|
|
|
|
|
<%= current_account.name %>
|
|
|
|
|
|
|
|
</span>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
|