diff options
Diffstat (limited to 'app/mailers/emails/projects.rb')
-rw-r--r-- | app/mailers/emails/projects.rb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/app/mailers/emails/projects.rb b/app/mailers/emails/projects.rb index 2500622caa7..15f58f810c0 100644 --- a/app/mailers/emails/projects.rb +++ b/app/mailers/emails/projects.rb @@ -49,11 +49,11 @@ module Emails @diff_notes_disabled = true add_project_headers - headers['X-GitLab-Author'] = @message.author_username + headers["X-GitLab-Author"] = @message.author_username - mail(from: sender(@message.author_id, @message.send_from_committer_email?), - reply_to: @message.reply_to, - subject: @message.subject) + mail(from: sender(@message.author_id, @message.send_from_committer_email?), + reply_to: @message.reply_to, + subject: @message.subject) end end end |