diff --git a/app/mailers/export_mailer.rb b/app/mailers/export_mailer.rb index 62def6931..5385aeed6 100644 --- a/app/mailers/export_mailer.rb +++ b/app/mailers/export_mailer.rb @@ -3,6 +3,6 @@ class ExportMailer < ApplicationMailer @export = export @user = export.user - mail to: @user.identity.email_address, subject: "Your Fizzy export is ready" + mail to: @user.identity.email_address, subject: "Your Fizzy data export is ready for download" end end diff --git a/app/views/mailers/export_mailer/completed.html.erb b/app/views/mailers/export_mailer/completed.html.erb index d95aa9d69..c0d458fc2 100644 --- a/app/views/mailers/export_mailer/completed.html.erb +++ b/app/views/mailers/export_mailer/completed.html.erb @@ -1,6 +1,6 @@ -

Your export is ready

+

Download your Fizzy data

Your Fizzy data export has finished processing and is ready to download.

-

<%= link_to "Download your export", account_export_url(@export) %>

+

<%= link_to "Download your data", account_export_url(@export) %>

diff --git a/app/views/mailers/export_mailer/completed.text.erb b/app/views/mailers/export_mailer/completed.text.erb index bfa633a5a..e5c274a9a 100644 --- a/app/views/mailers/export_mailer/completed.text.erb +++ b/app/views/mailers/export_mailer/completed.text.erb @@ -1,3 +1,3 @@ Your Fizzy data export has finished processing and is ready to download. -Download your export: <%= account_export_url(@export) %> +Download your data: <%= account_export_url(@export) %>