forked from anonaddy/anonaddy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DisallowedReplySendAttempt.php
89 lines (77 loc) · 2.44 KB
/
DisallowedReplySendAttempt.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<?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 DisallowedReplySendAttempt 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)
{
$fingerprint = $notifiable->should_encrypt ? $notifiable->fingerprint : null;
return (new MailMessage())
->subject('Disallowed reply/send from alias')
->markdown('mail.disallowed_reply_send_attempt', [
'aliasEmail' => $this->aliasEmail,
'recipient' => $this->recipient,
'destination' => $this->destination,
'authenticationResults' => $this->authenticationResults,
'userId' => $notifiable->user_id,
'recipientId' => $notifiable->id,
'emailType' => 'DRSA',
'fingerprint' => $fingerprint,
])
->withSymfonyMessage(function (Email $message) {
$message->getHeaders()
->addTextHeader('Feedback-ID', 'DRSA:anonaddy');
});
}
/**
* Get the array representation of the notification.
*
* @param mixed $notifiable
* @return array
*/
public function toArray($notifiable)
{
return [
//
];
}
}