diff --git a/app/mailers/notify_mailer.rb b/app/mailers/notify_mailer.rb index 72bc59f30..9b01cd9f7 100644 --- a/app/mailers/notify_mailer.rb +++ b/app/mailers/notify_mailer.rb @@ -103,7 +103,7 @@ class NotifyMailer < ApplicationMailer @user = user export_filename = "devto-export-#{Date.current.iso8601}.zip" attachments[export_filename] = attachment - mail(to: @user.email, subject: "The export of your data is ready") + mail(to: @user.email, subject: "The export of your content is ready") end def tag_moderator_confirmation_email(user, tag_name) diff --git a/app/views/mailers/notify_mailer/export_email.html.erb b/app/views/mailers/notify_mailer/export_email.html.erb index 82385c73a..6e64068af 100644 --- a/app/views/mailers/notify_mailer/export_email.html.erb +++ b/app/views/mailers/notify_mailer/export_email.html.erb @@ -1,4 +1,4 @@ -

Your data has been exported.

+

Your content has been exported.

Please check the attached file.

diff --git a/app/views/mailers/notify_mailer/export_email.text.erb b/app/views/mailers/notify_mailer/export_email.text.erb index 0ee052c38..b54936b2d 100644 --- a/app/views/mailers/notify_mailer/export_email.text.erb +++ b/app/views/mailers/notify_mailer/export_email.text.erb @@ -1,3 +1,3 @@ -Your data has been exported. +Your content has been exported. Please check the attached file. diff --git a/spec/mailers/notify_mailer_spec.rb b/spec/mailers/notify_mailer_spec.rb index 03708ec18..23644842d 100644 --- a/spec/mailers/notify_mailer_spec.rb +++ b/spec/mailers/notify_mailer_spec.rb @@ -155,7 +155,7 @@ RSpec.describe NotifyMailer, type: :mailer do describe "#export_email" do it "renders proper subject" do export_email = described_class.export_email(user, "attachment") - expect(export_email.subject).to include("export of your data is ready") + expect(export_email.subject).to include("export of your content is ready") end it "renders proper receiver" do