diff --git a/mail.md b/mail.md index a703545682..6ffb2173aa 100644 --- a/mail.md +++ b/mail.md @@ -1459,7 +1459,7 @@ class LogMessage ## Custom Transports -Laravel includes a variety of mail transports; however, you may wish to write your own transports to deliver email via other services that Laravel does not support out of the box. To get started, define a class that extends the `Symfony\Component\Mailer\Transport\AbstractTransport` class. Then, implement the `doSend` and `__toString()` methods on your transport: +Laravel includes a variety of mail transports; however, you may wish to write your own transports to deliver email via other services that Laravel does not support out of the box. To get started, define a class that extends the `Symfony\Component\Mailer\Transport\AbstractTransport` class. Then, implement the `doSend` and `__toString` methods on your transport: ```php use MailchimpTransactional\ApiClient; @@ -1573,7 +1573,7 @@ public function boot(): void } ``` -Once your transport has been registered, you may create a mailer definition within your application's config/mail.php configuration file that utilizes the new transport: +Once your transport has been registered, you may create a mailer definition within your application's `config/mail.php` configuration file that utilizes the new transport: ```php 'brevo' => [