timing; return new Envelope( subject: __('emails.abandoned_checkout.subject_' . $this->timing, [ 'package' => $this->package->name ]), ); } public function content(): Content { return new Content( view: 'emails.abandoned-checkout', with: [ 'user' => $this->user, 'package' => $this->package, 'timing' => $this->timing, 'resumeUrl' => $this->resumeUrl, ], ); } public function attachments(): array { return []; } }