refactor: replace custom CRM with Monica fork
Some checks failed
Build & Push Monica Image to Gitea Registry / build-and-push (push) Failing after 9s
Some checks failed
Build & Push Monica Image to Gitea Registry / build-and-push (push) Failing after 9s
This commit is contained in:
73
app/Notifications/StayInTouchEmail.php
Normal file
73
app/Notifications/StayInTouchEmail.php
Normal file
@@ -0,0 +1,73 @@
|
||||
<?php
|
||||
|
||||
namespace App\Notifications;
|
||||
|
||||
use App\Models\User\User;
|
||||
use Illuminate\Bus\Queueable;
|
||||
use App\Models\Contact\Contact;
|
||||
use App\Interfaces\MailNotification;
|
||||
use Illuminate\Queue\SerializesModels;
|
||||
use Illuminate\Queue\InteractsWithQueue;
|
||||
use Illuminate\Contracts\Queue\ShouldQueue;
|
||||
use Illuminate\Foundation\Bus\Dispatchable;
|
||||
use Illuminate\Notifications\Messages\MailMessage;
|
||||
use Illuminate\Notifications\Notification as LaravelNotification;
|
||||
|
||||
class StayInTouchEmail extends LaravelNotification implements ShouldQueue, MailNotification
|
||||
{
|
||||
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
||||
|
||||
/**
|
||||
* @var Contact
|
||||
*/
|
||||
protected $contact;
|
||||
|
||||
/**
|
||||
* Create a new message instance.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function __construct(Contact $contact)
|
||||
{
|
||||
$this->contact = $contact;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the notification's delivery channels.
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public function via()
|
||||
{
|
||||
return ['mail'];
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the mail representation of the notification.
|
||||
*
|
||||
* @param User $user
|
||||
* @return MailMessage
|
||||
*/
|
||||
public function toMail(User $user): MailMessage
|
||||
{
|
||||
return (new MailMessage)
|
||||
->subject(trans('mail.stay_in_touch_subject_line', ['name' => $this->contact->name]))
|
||||
->greeting(trans('mail.greetings', ['username' => $user->first_name]))
|
||||
->line(trans_choice('mail.stay_in_touch_subject_description', $this->contact->stay_in_touch_frequency, [
|
||||
'name' => $this->contact->name,
|
||||
'frequency' => $this->contact->stay_in_touch_frequency,
|
||||
]))
|
||||
->action(trans('mail.footer_contact_info2', ['name' => $this->contact->name]), $this->contact->getLink());
|
||||
}
|
||||
|
||||
/**
|
||||
* Use in test to check the parameter notification.
|
||||
*
|
||||
* @param Contact $contact
|
||||
* @return bool
|
||||
*/
|
||||
public function assertSentFor(Contact $contact): bool
|
||||
{
|
||||
return $contact->id == $this->contact->id;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user