diff --git a/app/views/personalization_settings/_signature_request_email_form.html.erb b/app/views/personalization_settings/_signature_request_email_form.html.erb
index 1b4588ea..29b19f51 100644
--- a/app/views/personalization_settings/_signature_request_email_form.html.erb
+++ b/app/views/personalization_settings/_signature_request_email_form.html.erb
@@ -8,12 +8,18 @@
<%= form_for AccountConfigs.find_or_initialize_for_key(current_account, AccountConfig::SUBMITTER_INVITATION_EMAIL_KEY), url: settings_personalization_path, method: :post, html: { autocomplete: 'off', class: 'space-y-4' } do |f| %>
<%= f.hidden_field :key %>
- <%= f.fields_for :value, Struct.new(:subject, :body).new(*f.object.value.values_at('subject', 'body')) do |ff| %>
+ <%= f.fields_for :value, Struct.new(:subject, :body, :reply_to).new(*f.object.value.values_at('subject', 'body', 'reply_to')) do |ff| %>
<%= ff.label :subject, t('subject'), class: 'label' %>
<%= ff.text_field :subject, required: true, class: 'base-input', dir: 'auto' %>
<%= render 'personalization_settings/email_body_field', ff:, config: f.object %>
+ <% if can?(:manage, :reply_to) || can?(:manage, :personalization_advanced) %>
+
+ <%= ff.label :reply_to, t('reply_to'), class: 'label' %>
+ <%= ff.email_field :reply_to, class: 'base-input', dir: 'auto', placeholder: t(:email) %>
+
+ <% end %>
<% end %>
<%= f.button button_title(title: t('save'), disabled_with: t('saving')), class: 'base-button' %>