<%#-- copyright OpenProject is an open source project management software. Copyright (C) 2012-2024 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: Copyright (C) 2006-2013 Jean-Philippe Lang Copyright (C) 2010-2013 the ChiliProject Team This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. See COPYRIGHT and LICENSE files for more details. ++#%> <% html_title t(:label_administration), t(:'menus.admin.mail_notification') -%> <%= toolbar title: t(:'menus.admin.mail_notification') %> <%= styled_form_tag(admin_settings_mail_notifications_path, method: :patch) do %> <% if @deliveries %>
<%= setting_text_field :mail_from, size: 60, container_class: '-middle' %>
<%= setting_check_box :bcc_recipients %>
<%= setting_check_box :plain_text_mail %>
<%= setting_select :emails_salutation, [ [User.human_attribute_name(:firstname), :firstname], [t('mail.salutation_full_name'), :name], ], container_class: '-middle' %>
<%= t(:setting_emails_header) %> & <%= I18n.t(:setting_emails_footer) %> <%= render Settings::TextSettingComponent.new(I18n.locale, name: "emails_header") %> <%= render Settings::TextSettingComponent.new(I18n.locale, name: "emails_footer") %>
<% else %>
<%= simple_format(t(:text_email_delivery_not_configured)) %>
<% end %> <% email_methods = [:smtp, :sendmail] email_methods << :letter_opener if Rails.env.development? %> <%= content_tag :fieldset, id: "mail_configuration", class: "form--fieldset" do %> <%= t(:text_setup_mail_configuration) %>
<%= setting_select(:email_delivery_method, email_methods, id: "email_delivery_method_switch", container_class: '-slim') %>
<%= setting_text_field :smtp_address, container_class: '-middle' %>
<%= setting_text_field :smtp_port, size: 6, container_class: '-xslim' %>
<%= setting_text_field :smtp_domain, container_class: '-middle' %>
<%= setting_select(:smtp_authentication, [:none, :plain, :login, :cram_md5], container_class: '-slim') %>
<%= setting_text_field :smtp_user_name, container_class: '-middle' %>
<%= setting_password :smtp_password, container_class: '-middle' %>
<%= setting_check_box :smtp_enable_starttls_auto %>
<%= setting_check_box :smtp_ssl %>
<%= setting_text_field :sendmail_location %>

Letter opener is used to render emails as a file in your Rails tmp folder. Mails will automatically open in your browser if supported.

<% end unless OpenProject::Configuration['email_delivery_configuration'] == 'legacy' %> <%= styled_button_tag t(:button_save), class: '-primary -with-icon icon-checkmark' %> <% if @deliveries %>
<%= link_to t(:label_send_test_email), { controller: '/admin', action: 'test_email' }, method: :post %>
<% end %> <% end %>