__subject = $subject; $this->__contents = $contents; $this->__attachments = $attachments; } public function getTemplateName(): string { return 'mails.free_text'; } public function getSubject(): string { return $this->__subject; } public function getParams(): array { return [ 'contents' => $this->__contents, ]; } }