accountFile->account->space->name . ': ' . __('New voice message from :sipfrom', ['sipfrom' => $this->accountFile->sip_from]), ); } public function content(): Content { return new Content( markdown: 'mails.voicemail', ); } public function attachments(): array { return [ Attachment::fromStorage($this->accountFile->path) ->withMime($this->accountFile->content_type) ]; } }