projectMailing->project->mail_subject, from: [ 'address' => 'noreply@'.config('app.domain'), 'name' => 'Report Generator', ], to:$this->projectMailing->recipients->get('mame', 'email')->toArray(), ); } /** * Get the message content definition. */ public function content(): Content { return new Content( view: 'view.name', ); } /** * Get the attachments for the message. * * @return array */ public function attachments(): array { return []; } }