Mailer copy

This commit is contained in:
Jason Zimdars
2025-12-01 22:27:53 -06:00
parent df2d938b7e
commit 41c91e6dd6
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -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
@@ -1,6 +1,6 @@
<h1 class="title">Your export is ready</h1>
<h1 class="title">Download your Fizzy data</h1>
<p class="subtitle">Your Fizzy data export has finished processing and is ready to download.</p>
<p><%= link_to "Download your export", account_export_url(@export) %></p>
<p><%= link_to "Download your data", account_export_url(@export) %></p>
<p class="footer">Need help? <%= mail_to "support@fizzy.do", "Send us an email" %>.</p>
@@ -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) %>