| 12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- namespace App\Mail;
- use Illuminate\Bus\Queueable;
- use Illuminate\Mail\Mailable;
- use Illuminate\Mail\Mailables\Content;
- use Illuminate\Mail\Mailables\Envelope;
- use Illuminate\Queue\SerializesModels;
- class ProviderApprovedMail extends Mailable
- {
- use Queueable, SerializesModels;
- public function __construct(
- public readonly string $recipientName = '',
- ) {}
- public function envelope(): Envelope
- {
- return new Envelope(
- subject: __('mail.provider_approved.subject'),
- );
- }
- public function content(): Content
- {
- return new Content(
- view: 'emails.provider_approved',
- );
- }
- public function attachments(): array
- {
- return [];
- }
- }
|