1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace App\Notifications; |
4
|
|
|
|
5
|
|
|
use Illuminate\Bus\Queueable; |
6
|
|
|
use Illuminate\Contracts\Queue\ShouldQueue; |
7
|
|
|
use Illuminate\Notifications\Messages\MailMessage; |
8
|
|
|
use Illuminate\Notifications\Notification; |
9
|
|
|
|
10
|
|
|
class SendActivationEmail extends Notification implements ShouldQueue |
11
|
|
|
{ |
12
|
|
|
use Queueable; |
13
|
|
|
|
14
|
|
|
protected $token; |
15
|
|
|
|
16
|
|
|
/** |
17
|
|
|
* Create a new notification instance. |
18
|
|
|
* |
19
|
|
|
* SendActivationEmail constructor. |
20
|
|
|
* |
21
|
|
|
* @param $token |
22
|
|
|
*/ |
23
|
|
|
public function __construct($token) |
24
|
|
|
{ |
25
|
|
|
$this->token = $token; |
26
|
|
|
// $this->onQueue('social'); |
27
|
|
|
} |
28
|
|
|
|
29
|
|
|
/** |
30
|
|
|
* Get the notification's delivery channels. |
31
|
|
|
* |
32
|
|
|
* @param mixed $notifiable |
33
|
|
|
* |
34
|
|
|
* @return array |
35
|
|
|
*/ |
36
|
|
|
public function via($notifiable) |
|
|
|
|
37
|
|
|
{ |
38
|
|
|
return ['mail']; |
39
|
|
|
} |
40
|
|
|
|
41
|
|
|
/** |
42
|
|
|
* Get the mail representation of the notification. |
43
|
|
|
* |
44
|
|
|
* @param mixed $notifiable |
45
|
|
|
* |
46
|
|
|
* @return \Illuminate\Notifications\Messages\MailMessage |
47
|
|
|
*/ |
48
|
|
|
public function toMail($notifiable) |
|
|
|
|
49
|
|
|
{ |
50
|
|
|
$baseUrl = env('APP_URL'); |
51
|
|
|
$url = $baseUrl.'/verify?token='.$this->token; |
52
|
|
|
$message = new MailMessage(); |
53
|
|
|
$message->subject(trans('emails.activationSubject')) |
|
|
|
|
54
|
|
|
->greeting(trans('emails.activationGreeting')) |
|
|
|
|
55
|
|
|
->line(trans('emails.activationMessage')) |
56
|
|
|
->action(trans('emails.activationButton'), $url) |
|
|
|
|
57
|
|
|
->line($this->token) |
58
|
|
|
->line(trans('emails.activationThanks')); |
59
|
|
|
|
60
|
|
|
return $message; |
61
|
|
|
} |
62
|
|
|
|
63
|
|
|
/** |
64
|
|
|
* Get the array representation of the notification. |
65
|
|
|
* |
66
|
|
|
* @param mixed $notifiable |
67
|
|
|
* |
68
|
|
|
* @return array |
69
|
|
|
*/ |
70
|
|
|
public function toArray($notifiable) |
|
|
|
|
71
|
|
|
{ |
72
|
|
|
return [ |
73
|
|
|
// |
74
|
|
|
]; |
75
|
|
|
} |
76
|
|
|
} |
77
|
|
|
|
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.