Fix for email from

This commit is contained in:
Hillel Coren 2018-04-25 08:53:03 +03:00
parent 439a7ee867
commit 08cc427a36

View File

@ -154,7 +154,7 @@ class Mailer
$client = new PostmarkClient(config('services.postmark'));
$message = [
'To' => $toEmail,
'From' => $fromEmail,
'From' => "{$fromName} <{$fromEmail}>",
'ReplyTo' => $replyEmail,
'Subject' => $subject,
'TextBody' => $textBody,