from(config('mail.from.address', 'hello@example.com'), 'Victor'); } public function content(): Content { return new Content( markdown: 'mail.drip.promo-code', with: [ 'userName' => $this->user->name, 'promoCode' => 'FOUNDER', ], ); } }