Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 8
0.00% covered (danger)
0.00%
0 / 4
CRAP
0.00% covered (danger)
0.00%
0 / 1
AdminCenterReactivateUserNotification
0.00% covered (danger)
0.00%
0 / 8
0.00% covered (danger)
0.00%
0 / 4
20
0.00% covered (danger)
0.00%
0 / 1
 __construct
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 envelope
0.00% covered (danger)
0.00%
0 / 3
0.00% covered (danger)
0.00%
0 / 1
2
 content
0.00% covered (danger)
0.00%
0 / 3
0.00% covered (danger)
0.00%
0 / 1
2
 attachments
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
1<?php
2
3namespace App\Mail;
4
5use Illuminate\Bus\Queueable;
6use Illuminate\Mail\Mailable;
7use Illuminate\Mail\Mailables\Content;
8use Illuminate\Mail\Mailables\Envelope;
9use Illuminate\Queue\SerializesModels;
10
11class AdminCenterReactivateUserNotification extends Mailable
12{
13    use Queueable, SerializesModels;
14
15    /**
16     * Create a new message instance.
17     */
18    public function __construct(
19        public string $email,
20        public string $companyEmail,
21        public string $companyName,
22        public string $emailSubject = 'Take Action : A new user has been reactivated'
23    ) {}
24
25    /**
26     * Get the message envelope.
27     */
28    public function envelope(): Envelope
29    {
30        return new Envelope(
31            subject: $this->emailSubject,
32        );
33    }
34
35    /**
36     * Get the message content definition.
37     */
38    public function content(): Content
39    {
40        return new Content(
41            view: 'mail.admin.cmc_reactivate_user_notification',
42        );
43    }
44
45    /**
46     * Get the attachments for the message.
47     *
48     * @return array<int, \Illuminate\Mail\Mailables\Attachment>
49     */
50    public function attachments(): array
51    {
52        return [];
53    }
54}