diff --git a/app/Notifications/DownloadDataNotification.php b/app/Notifications/DownloadDataNotification.php index 92bd3ba..e88aa84 100644 --- a/app/Notifications/DownloadDataNotification.php +++ b/app/Notifications/DownloadDataNotification.php @@ -25,8 +25,8 @@ public function toMail(object $notifiable): MailMessage { return (new MailMessage) ->markdown('emails.downloaded-data', ['notifiable' => $notifiable]) - ->from('no-reply@song-rank.com') - ->subject("Kyle's Song Ranker - Data Download Complete") + ->from(env("MAIL_FROM_ADDRESS")) + ->subject("song-rank.dev - Data Download Complete") ->attach(Excel::download(new RankingsExport($this->rankings), 'rankings.xlsx')->getFile(), ['as' => 'rankings.xlsx']); } diff --git a/app/Notifications/RankingReminderNotification.php b/app/Notifications/RankingReminderNotification.php index 75a01aa..5fa4b90 100644 --- a/app/Notifications/RankingReminderNotification.php +++ b/app/Notifications/RankingReminderNotification.php @@ -23,6 +23,6 @@ public function toMail(object $notifiable): MailMessage return (new MailMessage)->markdown('emails.ranking_reminder', [ 'notifiable' => $notifiable, 'rankings' => $this->rankings - ])->subject("You have incomplete song-rank.com rankings."); + ])->subject("You have incomplete songrank.dev rankings."); } } diff --git a/contributing.md b/contributing.md index 4b520a1..b7d8bd2 100644 --- a/contributing.md +++ b/contributing.md @@ -1,6 +1,6 @@ # Contributing Guide -Thank you for considering contributing to our song-rank.com! We welcome all kinds of contributions, including bug fixes, feature requests, and documentation improvements. Please follow the guidelines below to get started. +Thank you for considering contributing to our songrank.dev! We welcome all kinds of contributions, including bug fixes, feature requests, and documentation improvements. Please follow the guidelines below to get started. ## Table of Contents - [How to Contribute](#how-to-contribute) diff --git a/resources/views/layouts/partials/footer.blade.php b/resources/views/layouts/partials/footer.blade.php index bf0dfe0..dec638b 100644 --- a/resources/views/layouts/partials/footer.blade.php +++ b/resources/views/layouts/partials/footer.blade.php @@ -4,7 +4,7 @@