subject('New Contact Submission: '.$this->customerName) ->greeting('Hello Admin,') // Or keep it empty if you prefer ->line('You have received a new message from your contact form:') ->line("**Name:** {$this->customerName}") ->line("**Email:** {$this->customerEmail}") ->line("**Message:**") ->line($this->customerMessage) ->action('Reply via Email', 'mailto:'.$this->customerEmail);; } }