mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-28 04:01:10 -04:00
invoice mail name issue fix
This commit is contained in:
@ -40,7 +40,7 @@ class SendInvoiceMail extends Mailable
|
|||||||
'mailable_id' => $this->data['invoice']['id']
|
'mailable_id' => $this->data['invoice']['id']
|
||||||
]);
|
]);
|
||||||
|
|
||||||
return $this->from($this->data['from'])
|
return $this->from($this->data['from'], env('MAIL_FROM_NAME'))
|
||||||
->subject($this->data['subject'])
|
->subject($this->data['subject'])
|
||||||
->markdown('emails.send.invoice', ['data', $this->data]);
|
->markdown('emails.send.invoice', ['data', $this->data]);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user