Commit 473674a2 authored by Heinrich Lee Yu's avatar Heinrich Lee Yu

Prevent premailer from converting HTML entities

This prevents `&mdash` in our templates being change to `-`
parent bc696947
---
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