template['subject'], ); } public function content(): Content { return new Content( view: 'emails.transactional', text: 'emails.transactional_text', with: [ 'heading' => $this->template['heading'], 'bodyText' => $this->template['body_text'], 'buttonText' => $this->template['button_text'], 'actionUrl' => $this->actionUrl, 'logoUrl' => $this->branding['logo_url'], 'primaryColor' => $this->branding['primary_color'], 'secondaryColor' => $this->branding['secondary_color'], 'footerText' => $this->branding['footer_text'], ], ); } }