From ecac7291c85b4157aef230155a6a6c7830941d59 Mon Sep 17 00:00:00 2001 From: David Bomba Date: Tue, 25 May 2021 09:31:12 +1000 Subject: [PATCH] Fixes for emails --- app/Mail/SupportMessageSent.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Mail/SupportMessageSent.php b/app/Mail/SupportMessageSent.php index b826cf7f42f5..197782f96f57 100644 --- a/app/Mail/SupportMessageSent.php +++ b/app/Mail/SupportMessageSent.php @@ -60,7 +60,7 @@ class SupportMessageSent extends Mailable $subject = "Customer MSG {$user->present()->name} - [{$plan} - DB:{$company->db}]"; return $this->from(config('mail.from.address'), config('mail.from.name')) - ->replyTo($user, $user->present()->name()) + ->replyTo($user->email, $user->present()->name()) ->subject($subject) ->markdown('email.support.message', [ 'message' => $this->message,