mirror of
https://github.com/anonaddy/anonaddy.git
synced 2025-12-28 07:55:07 +00:00
88 lines
2.4 KiB
PHP
88 lines
2.4 KiB
PHP
<?php
|
|
|
|
namespace App\Notifications;
|
|
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Contracts\Queue\ShouldBeEncrypted;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Notifications\Messages\MailMessage;
|
|
use Illuminate\Notifications\Notification;
|
|
use Illuminate\Support\Str;
|
|
use Symfony\Component\Mime\Email;
|
|
|
|
class SpamReplySendAttempt extends Notification implements ShouldBeEncrypted, ShouldQueue
|
|
{
|
|
use Queueable;
|
|
|
|
protected $aliasEmail;
|
|
|
|
protected $recipient;
|
|
|
|
protected $destination;
|
|
|
|
protected $authenticationResults;
|
|
|
|
/**
|
|
* Create a new notification instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct($alias, $recipient, $authenticationResults)
|
|
{
|
|
$this->aliasEmail = $alias['local_part'].'@'.$alias['domain'];
|
|
$this->recipient = $recipient;
|
|
$this->destination = Str::replaceLast('=', '@', $alias['extension']);
|
|
$this->authenticationResults = $authenticationResults;
|
|
}
|
|
|
|
/**
|
|
* Get the notification's delivery channels.
|
|
*
|
|
* @param mixed $notifiable
|
|
* @return array
|
|
*/
|
|
public function via($notifiable)
|
|
{
|
|
return ['mail'];
|
|
}
|
|
|
|
/**
|
|
* Get the mail representation of the notification.
|
|
*
|
|
* @param mixed $notifiable
|
|
* @return \Illuminate\Notifications\Messages\MailMessage
|
|
*/
|
|
public function toMail($notifiable)
|
|
{
|
|
return (new MailMessage)
|
|
->subject('Attempted reply/send from alias has failed')
|
|
->markdown('mail.spam_reply_send_attempt', [
|
|
'aliasEmail' => $this->aliasEmail,
|
|
'recipient' => $this->recipient,
|
|
'destination' => $this->destination,
|
|
'authenticationResults' => $this->authenticationResults,
|
|
'userId' => $notifiable->user_id,
|
|
'recipientId' => $notifiable->id,
|
|
'emailType' => 'SRSA',
|
|
'fingerprint' => $notifiable->should_encrypt ? $notifiable->fingerprint : null,
|
|
])
|
|
->withSymfonyMessage(function (Email $message) {
|
|
$message->getHeaders()
|
|
->addTextHeader('Feedback-ID', 'SRSA:anonaddy');
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Get the array representation of the notification.
|
|
*
|
|
* @param mixed $notifiable
|
|
* @return array
|
|
*/
|
|
public function toArray($notifiable)
|
|
{
|
|
return [
|
|
//
|
|
];
|
|
}
|
|
}
|