mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-12 14:12:44 +01:00
Fix for Postmark from
This commit is contained in:
parent
1dee791077
commit
807c1e4db3
@ -154,7 +154,7 @@ class Mailer
|
|||||||
$client = new PostmarkClient(config('services.postmark'));
|
$client = new PostmarkClient(config('services.postmark'));
|
||||||
$message = [
|
$message = [
|
||||||
'To' => $toEmail,
|
'To' => $toEmail,
|
||||||
'From' => "{$fromName} <{$fromEmail}>",
|
'From' => sprintf('"%s" <%s>', addslashes($fromName), $fromEmail),
|
||||||
'ReplyTo' => $replyEmail,
|
'ReplyTo' => $replyEmail,
|
||||||
'Subject' => $subject,
|
'Subject' => $subject,
|
||||||
'TextBody' => $textBody,
|
'TextBody' => $textBody,
|
||||||
|
Loading…
Reference in New Issue
Block a user