Skip to content

Commit

Permalink
Changed email image and salutation
Browse files Browse the repository at this point in the history
  • Loading branch information
julsteele committed Mar 18, 2023
1 parent 2bf7879 commit 56e8a35
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 4 deletions.
3 changes: 2 additions & 1 deletion app/Notifications/AcceptedNotification.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ public function toMail(object $notifiable): MailMessage
->line('By approving, your Eurofurence event registration will be updated to include the fee for the assigned Dealership. All payments must be handled through the Eurofurence registration system, available at https://identity.eurofurence.org. Please note that you are required to pay all fees, including the Eurofurence event registration fee, within fourteen days of receiving this email to secure your placement as a dealer. If payment is overdue, Dealers\' Den management may void your placement and offer the space to the next dealer on the waiting list.')
->line('Upon completion of payment, we will assign a specific table to your Dealership, based on your request and space availability. Although placements are not final until the start of the convention, you will be sent an email containing the preliminary Dealership table assignment for information.')
->line('If you have any questions or concerns regarding the payment or subsequent processes, please contact Dealers\' Den management via [email protected].')
->line('Thank you again for your interest and participation in Eurofurence Dealers\' Den! We are looking forward to seeing you and your beautiful artwork and items on display at the convention, and we have no doubt that it will be a huge hit among our attendees.');
->line('Thank you again for your interest and participation in Eurofurence Dealers\' Den! We are looking forward to seeing you and your beautiful artwork and items on display at the convention, and we have no doubt that it will be a huge hit among our attendees.')
->salutation(new HtmlString('Best regards,<br />Pattarchus'));
}

public function toArray(object $notifiable): array
Expand Down
4 changes: 3 additions & 1 deletion app/Notifications/OnHoldNotification.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Notifications\Messages\MailMessage;
use Illuminate\Notifications\Notification;
use Illuminate\Support\HtmlString;

class OnHoldNotification extends Notification implements ShouldQueue
{
Expand Down Expand Up @@ -34,7 +35,8 @@ public function toMail(object $notifiable): MailMessage
->line($this->tableAssigned)
->action('I confirm and agree to purchase the offered Dealership Package.', url('/applications/confirm'))
->line('We understand that this alternative option may not be what you had in mind when applying, but we hope that it will still meet your needs and enable you to participate in the Eurofurence Dealers\' Den. As we have limited space, we will be offering any available table sizes to other applications on the waiting list if we do not receive a response from you within the next seven days. So please let us know within this time frame whether you would like to accept one of the alternative options or decline the offer and be put on the waiting list. To do so, simply reply to this email.')
->line('We apologize for any inconvenience this may have caused you, and we hope to hear back from you soon. Thank you for your understanding and cooperation.');
->line('We apologize for any inconvenience this may have caused you, and we hope to hear back from you soon. Thank you for your understanding and cooperation.')
->salutation(new HtmlString('Best regards,<br />Pattarchus'));
}

public function toArray(object $notifiable): array
Expand Down
3 changes: 2 additions & 1 deletion app/Notifications/WaitingListNotification.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ public function toMail(object $notifiable): MailMessage
->line('Thank you for submitting your application to sell your amazing art and items at the upcoming Eurofurence and your patience while we have been reviewing the dealer applications.')
->line('Unfortunately, all of our available tables have been filled, and we regret to inform you that we cannot accommodate your application at this time. However, we would like to inform you that your application has been put on the waiting list. Should any slots become available before the convention, we will contact you as soon as possible. Also, there might be last-minute sales of canceled Dealership spaces on a first-come, first-served basis at the convention itself, starting 12:00 (noon) on Monday for unclaimed Dealerships. We highly encourage you to drop by in case a spot opens up.')
->line('If you are also interested in other table sizes, please let us know in time. You can find our offered Dealership Packages at ' . config('ef.dealers_tos_url'))
->line('Thank you for your understanding and cooperation. We appreciate your interest in the Eurofurence Dealers\' Den, and we hope that we will be able to offer you a Dealership in the future.');
->line('Thank you for your understanding and cooperation. We appreciate your interest in the Eurofurence Dealers\' Den, and we hope that we will be able to offer you a Dealership in the future.')
->salutation(new HtmlString('Best regards,<br />Pattarchus'));
}

public function toArray(object $notifiable): array
Expand Down
4 changes: 3 additions & 1 deletion app/Notifications/WelcomeNotification.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Notifications\Messages\MailMessage;
use Illuminate\Notifications\Notification;
use Illuminate\Support\HtmlString;

class WelcomeNotification extends Notification implements ShouldQueue
{
Expand All @@ -27,7 +28,8 @@ public function toMail($notifiable): MailMessage
->subject('Application Phase: Thank you!')
->line('Thank you for your application for a Dealership at the upcoming Eurofurence. Your interest in being a part of this year\'s Dealers\' Den is very much appreciated.')
->line('We have received your application and will review it once the Dealership application period has ended. We understand that waiting can be difficult, but please know that we are working hard to review all applications in a timely manner. Once we have reviewed all the applications, we will get in touch with you to provide you with all the necessary information about the next steps.')
->line('Thank you in advance for your patience. The Dealers\' Den management is looking forward to reviewing your application.');
->line('Thank you in advance for your patience. The Dealers\' Den management is looking forward to reviewing your application.')
->salutation(new HtmlString('Best regards,<br />Pattarchus'));
}

public function toArray($notifiable): array
Expand Down
Binary file modified public/images/mail/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 56e8a35

Please sign in to comment.