55 lines
1.5 KiB
PHP
55 lines
1.5 KiB
PHP
<?php
|
|||
|
|
|
||
|
|
namespace Modules\Core\Order\Notifications;
|
||
|
|
|
||
|
|
use Illuminate\Notifications\AnonymousNotifiable;
|
||
|
|
use Illuminate\Notifications\Messages\MailMessage;
|
||
|
|
use Illuminate\Support\Facades\Notification as NotificationFacade;
|
||
|
|
use Modules\Core\Notification\BaseNotification;
|
||
|
|
use Modules\Core\Order\Events\OrderDispatched;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Fills a real, previously-unfilled customer-communication gap — before
|
||
|
|
* this redesign nothing notified a customer when their carrier order left
|
||
|
|
* the building at all.
|
||
|
|
*/
|
||
|
|
class OrderDispatchedNotification extends BaseNotification
|
||
|
|
{
|
||
|
|
public function __construct(private readonly OrderDispatched $event) {}
|
||
|
|
|
||
|
|
public static function getKey(): string
|
||
|
|
{
|
||
|
|
return 'order.dispatched.customer.mail';
|
||
|
|
}
|
||
|
|
|
||
|
|
public static function listensTo(): string
|
||
|
|
{
|
||
|
|
return OrderDispatched::class;
|
||
|
|
}
|
||
|
|
|
||
|
|
public function via(object $notifiable): array
|
||
|
|
{
|
||
|
|
return ['mail'];
|
||
|
|
}
|
||
|
|
|
||
|
|
public function notifiable(): AnonymousNotifiable
|
||
|
|
{
|
||
|
|
$order = $this->event->order;
|
||
|
|
|
||
|
|
$email = $order->billingAddress?->contact_email ?? $order->shippingAddress?->contact_email;
|
||
|
|
|
||
|
|
return NotificationFacade::route('mail', $email);
|
||
|
|
}
|
||
|
|
|
||
|
|
public function toMail(object $notifiable): MailMessage
|
||
|
|
{
|
||
|
|
$order = $this->event->order;
|
||
|
|
|
||
|
|
return (new MailMessage)
|
||
|
|
->subject(__('Your order :reference is on its way', ['reference' => $order->reference]))
|
||
|
|
->view('core::order.notifications.dispatched', [
|
||
|
|
'reference' => $order->reference,
|
||
|
|
]);
|
||
|
|
}
|
||
|
|
}
|