Skip to content

Commit

Permalink
Merge pull request #35 from kyledoesdev/hotfix/fix-mail-from
Browse files Browse the repository at this point in the history
fix mail from address
  • Loading branch information
kyledoesdev authored Nov 7, 2024
2 parents fa89000 + 813dfe2 commit 299992a
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions app/Notifications/DownloadDataNotification.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ public function toMail(object $notifiable): MailMessage
{
return (new MailMessage)
->markdown('emails.downloaded-data', ['notifiable' => $notifiable])
->from('[email protected]')
->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']);
}

Expand Down
2 changes: 1 addition & 1 deletion app/Notifications/RankingReminderNotification.php
Original file line number Diff line number Diff line change
Expand Up @@ -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.");
}
}
2 changes: 1 addition & 1 deletion contributing.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion resources/views/layouts/partials/footer.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<div class="grid grid-cols-1 lg:grid-cols-3 gap-4 text-center lg:text-left">
<!-- Footer Text -->
<div class="flex items-center justify-center lg:justify-start">
<p class="text-sm text-white mx-1">&copy; {{ now()->format('Y') }} Song-Rank.com by</p>
<p class="text-sm text-white mx-1">&copy; {{ now()->format('Y') }} songrank.dev by</p>
<a class="k-line-light font-bold text-blue-500" href="https://kyledoes.dev">Kyle</a>
</div>

Expand Down

0 comments on commit 299992a

Please sign in to comment.