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..a919c00669 100644
--- a/spec/mailers/distribution_mailer_spec.rb
+++ b/spec/mailers/distribution_mailer_spec.rb
@@ -98,6 +98,7 @@
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])
+ expect(mail.body.encoded).to match("We've had to change some items on your distribution")
end
end