<%#-- copyright OpenProject is a project management system. Copyright (C) 2012-2013 the OpenProject Team This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. 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 %>