1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 00:11:35 +02:00

Fix for email from

This commit is contained in:
Hillel Coren 2018-04-25 08:53:16 +03:00
parent 4cda561fae
commit c57067ed81

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,