Account email / SMTP

<%= link_to "Impostazioni", admin_path, class: "hover:underline" %> ยท da questi indirizzi partono le campagne. Le password SMTP sono cifrate.

<%= link_to "Nuovo account", new_mail_identity_path, class: btn_primary %>
<% if @mail_identities.empty? %>

Nessun account. Crea il mittente con host, porta e credenziali SMTP.

<% else %> <% @mail_identities.each do |identity| %> "> <% end %>
Nome Mittente SMTP Stato
<%= identity.name %> <%= identity.from_name %>
<%= identity.from_email %>
<%= identity.smtp_host %>:<%= identity.smtp_port %>
<%= Catalog.label_for(Catalog::MAIL_ENCRYPTIONS, identity.encryption) %>
<%= identity.active? ? "Attivo" : "Disattivo" %> <%= link_to "Modifica", edit_mail_identity_path(identity), class: "text-zinc-700 hover:underline dark:text-zinc-300" %>
<% end %>