12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <?php
- namespace App\Mail;
- use App\Models\Container;
- use App\Models\Enums\ObjectAction;
- use App\Models\Project;
- use App\Models\Task;
- use Illuminate\Bus\Queueable;
- use Illuminate\Contracts\Queue\ShouldQueue;
- use Illuminate\Mail\Mailable;
- use Illuminate\Mail\Mailables\Content;
- use Illuminate\Mail\Mailables\Envelope;
- use Illuminate\Queue\SerializesModels;
- class ProjectAction extends Mailable
- {
- use Queueable, SerializesModels;
-
- public function __construct(public Project $project, protected ObjectAction $objectAction, public array $actions = [])
- {
- }
-
- public function envelope(): Envelope
- {
- return new Envelope(
- subject: $this->project->name,
- );
- }
-
- public function content(): Content
- {
- return new Content(
-
- markdown: 'emails.actions.project',
- );
- }
-
- public function attachments(): array
- {
- return [];
- }
- }
|