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;
- /**
- * Create a new message instance.
- */
- public function __construct(public Project $project, protected ObjectAction $objectAction, public array $actions = [])
- {
- }
- /**
- * Get the message envelope.
- */
- public function envelope(): Envelope
- {
- return new Envelope(
- subject: $this->project->name,
- );
- }
- /**
- * Get the message content definition.
- */
- public function content(): Content
- {
- return new Content(
- //view: 'view.name',
- markdown: 'emails.actions.project',
- );
- }
- /**
- * Get the attachments for the message.
- *
- * @return array<int, \Illuminate\Mail\Mailables\Attachment>
- */
- public function attachments(): array
- {
- return [];
- }
- }
|