diff --git a/app/views/distribution_mailer/_distribution_changes.html.erb b/app/views/distribution_mailer/_distribution_changes.html.erb
index 948aaddaf0..1ce97cd50d 100644
--- a/app/views/distribution_mailer/_distribution_changes.html.erb
+++ b/app/views/distribution_mailer/_distribution_changes.html.erb
@@ -1,4 +1,4 @@
-
Here are some Items that we need change based on Human Essentials
+We've had to change some items on your distribution
<% if @distribution_changes[:updates].any? %>
- Items Updated
diff --git a/spec/mailers/distribution_mailer_spec.rb b/spec/mailers/distribution_mailer_spec.rb
index 26631de40f..12e7ac147a 100644
--- a/spec/mailers/distribution_mailer_spec.rb
+++ b/spec/mailers/distribution_mailer_spec.rb
@@ -96,8 +96,11 @@
it "renders the body with changes that happened in the distribution" do
distribution = create(:distribution, organization: user.organization, comment: "Distribution comment", partner: partner, delivery_method: :delivery)
mail = DistributionMailer.partner_mailer(organization, distribution, 'test subject', distribution_changes)
- expect(mail.body.encoded).to match(distribution_changes[:removed][0][:name])
- expect(mail.body.encoded).to match(distribution_changes[:updates][0][:name])
+ html = html_body(mail)
+
+ expect(html).to match(distribution_changes[:removed][0][:name])
+ expect(html).to match(distribution_changes[:updates][0][:name])
+ expect(html).to match("We've had to change some items on your distribution")
end
end