Commit e3c7374a authored by Sean McGivern's avatar Sean McGivern

Merge branch '55964-fix-email-encoding' into 'master'

Prevent premailer from replacing HTML entities

Closes #55964

See merge request gitlab-org/gitlab-ce!26931
parents c115ac4f 473674a2
---
title: Fix notfication emails having wrong encoding
merge_request: 26931
author:
type: fixed
......@@ -4,5 +4,6 @@ Premailer::Rails.config.merge!(
preserve_styles: true,
remove_comments: true,
remove_ids: false,
remove_scripts: false
remove_scripts: false,
output_encoding: 'US-ASCII'
)
......@@ -30,6 +30,19 @@ describe Notify do
description: 'My awesome description!')
end
describe 'with HTML-encoded entities' do
before do
described_class.test_email('test@test.com', 'Subject', 'Some body with —').deliver
end
subject { ActionMailer::Base.deliveries.last }
it 'retains 7bit encoding' do
expect(subject.body.ascii_only?).to eq(true)
expect(subject.body.encoding).to eq('7bit')
end
end
context 'for a project' do
shared_examples 'an assignee email' do
it 'is sent to the assignee as the author' do
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment