<%#-- copyright OpenProject is a project management system. Copyright (C) 2012-2014 the OpenProject Foundation (OPF) 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 doc/COPYRIGHT.rdoc for more details. ++#%> <% if @deliveries %> <%= form_tag({:action => 'edit', :tab => 'notifications'}) do %>

<%= setting_text_field :mail_from, :size => 60 %>

<%= setting_check_box :bcc_recipients %>

<%= setting_check_box :plain_text_mail %>

<%= setting_select(:default_notification_option, User.valid_notification_options.collect {|o| [l(o.last), o.first.to_s]}) %>

<%=l(:text_select_mail_notifications)%> <%= hidden_field_tag 'settings[notified_events][]', '' %> <% @notifiables.each do |notifiable| %> <%= notification_field notifiable %>
<% end %>

<%= check_all_links('notified_events') %>

<%= l(:setting_emails_header) %> & <%= l(:setting_emails_footer) %> <%= select_tag 'lang', options_for_select(lang_options_for_select(false), current_language.to_s), :id => 'emails_decorators_switch', :onchange => "toggleEmailDecoratorFields()" %> <% Setting.available_languages.each do |lang| %> <% end %>
<%= javascript_tag do -%> jQuery(document).ready(function () { toggleEmailDecoratorFields(); }); <% end -%>
<%= link_to l(:label_send_test_email), :controller => '/admin', :action => 'test_email' %>
<%= submit_tag l(:button_save) %> <% end %> <% else %>
<%= simple_format(l(:text_email_delivery_not_configured)) %>
<% end %>