diff --git a/app/views/notifications_settings/_bcc_form.html.erb b/app/views/notifications_settings/_bcc_form.html.erb
index 2459c6e4..98f4301c 100644
--- a/app/views/notifications_settings/_bcc_form.html.erb
+++ b/app/views/notifications_settings/_bcc_form.html.erb
@@ -11,7 +11,7 @@
<% end %>
- <%= f.email_field :value, autocomplete: 'off', class: 'base-input' %>
+ <%= tag.input type: 'email', multiple: true, name: 'account_config[value]', autocomplete: 'off', class: 'base-input', value: f.object.value %>
<%= f.button button_title(title: 'Save', disabled_with: 'Updating'), class: 'base-button' %>
diff --git a/app/views/templates_preferences/show.html.erb b/app/views/templates_preferences/show.html.erb
index 2ab3093f..6df97354 100644
--- a/app/views/templates_preferences/show.html.erb
+++ b/app/views/templates_preferences/show.html.erb
@@ -50,7 +50,7 @@
<% end %>
- <%= ff.email_field :bcc_completed, autocomplete: 'off', class: 'base-input' %>
+ <%= tag.input type: 'email', multiple: true, name: 'template[preferences][bcc_completed]', autocomplete: 'off', class: 'base-input', value: ff.object.bcc_completed %>
<% end %>