Skip to content

Commit

Permalink
make subjects consistent
Browse files Browse the repository at this point in the history
  • Loading branch information
loftwah committed Sep 9, 2024
1 parent 4213420 commit 6d44c29
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/mailers/backup_report_mailer.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ class BackupReportMailer < ApplicationMailer

def backup_completed(report)
@report = report
mail(subject: 'Backup Completed Successfully')
mail(subject: 'Linkarooie - Backup Completed Successfully')
end
end
2 changes: 1 addition & 1 deletion app/mailers/waiting_list_mailer.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ def daily_report(email)
@today_count = @waiting_list.where('created_at >= ?', Time.zone.now.beginning_of_day).count
@url = 'https://linkarooie.com'

mail(to: email, subject: 'Daily Waiting List Report - Linkarooie')
mail(to: email, subject: 'Linkarooie - Daily Waiting List Report')
end
end

0 comments on commit 6d44c29

Please sign in to comment.