mail_subject, ); } /** * Get the message content definition. */ public function content(): Content { return new Content( markdown: 'mail.todo-mail', with: [ 'message' => $this->message, 'subject' => $this->mail_subject, 'notiz' => $this->notiz, 'todo_url' => TodoResource::getUrl('edit', ['record' => $this->todo]), 'todo' => $this->todo, ], ); } /** * Get the attachments for the message. * * @return array */ public function attachments(): array { return []; } }