From 8fbc257b23f8abda42dbdbae459b62db6e03fdb8 Mon Sep 17 00:00:00 2001 From: brijraj_04 Date: Wed, 3 Feb 2021 12:24:28 +0530 Subject: [PATCH] payment from mail name --- app/Mail/SendPaymentMail.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Mail/SendPaymentMail.php b/app/Mail/SendPaymentMail.php index edcbe372..b0845e47 100644 --- a/app/Mail/SendPaymentMail.php +++ b/app/Mail/SendPaymentMail.php @@ -41,7 +41,7 @@ class SendPaymentMail extends Mailable 'mailable_id' => $this->data['payment']['id'] ]); - return $this->from($this->data['from']) + return $this->from($this->data['from'], config('mail.from.name')) ->subject($this->data['subject']) ->markdown('emails.send.payment', ['data', $this->data]);