mailSubject,
);
}
/**
* Get the message content definition.
*/
public function content(): Content
{
return new Content(
view: 'emails.events.manual_mail_report',
with: [
'mailMessage' => ($this->message),
'eventTitle' => $this->event['name'],
'eventEmail' => $this->event['email'],
'recipients' => implode('
', $this->originalRecipients),
'countRecipients' => count($this->originalRecipients),
],
);
}
/**
* Get the attachments for the message.
*
* @return array
*/
public function attachments(): array
{
return [];
}
}