From 30d3e493f661681ceda92fbf38b68e75ece1c923 Mon Sep 17 00:00:00 2001 From: Ahmed Alaa <92916738+AhmedAlaa4611@users.noreply.github.com> Date: Sun, 13 Jul 2025 23:40:30 +0300 Subject: [PATCH] Refine wording in custom transport mail docs --- mail.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mail.md b/mail.md index 06dc85f94c..5b8861a131 100644 --- a/mail.md +++ b/mail.md @@ -1506,7 +1506,7 @@ class MailchimpTransport extends AbstractTransport } ``` -Once you've defined your custom transport, you may register it via the `extend` method provided by the `Mail` facade. Typically, this should be done within the `boot` method of your application's `AppServiceProvider` service provider. A `$config` argument will be passed to the closure provided to the `extend` method. This argument will contain the configuration array defined for the mailer in the application's `config/mail.php` configuration file: +Once you've defined your custom transport, you may register it via the `extend` method provided by the `Mail` facade. Typically, this should be done within the `boot` method of your application's `AppServiceProvider`. A `$config` argument will be passed to the closure provided to the `extend` method. This argument will contain the configuration array defined for the mailer in the application's `config/mail.php` configuration file: ```php use App\Mail\MailchimpTransport;