diff --git a/contracts.md b/contracts.md
index 5c27ba27123..635c7eba54c 100644
--- a/contracts.md
+++ b/contracts.md
@@ -11,7 +11,7 @@
Laravel's "contracts" are a set of interfaces that define the core services provided by the framework. For example, an `Illuminate\Contracts\Queue\Queue` contract defines the methods needed for queueing jobs, while the `Illuminate\Contracts\Mail\Mailer` contract defines the methods needed for sending e-mail.
-Each contract has a corresponding implementation provided by the framework. For example, Laravel provides a queue implementation with a variety of drivers, and a mailer implementation that is powered by [SwiftMailer](https://swiftmailer.symfony.com/).
+Each contract has a corresponding implementation provided by the framework. For example, Laravel provides a queue implementation with a variety of drivers, and a mailer implementation that is powered by [Symfony Mailer](https://symfony.com/doc/6.0/mailer.html).
All of the Laravel contracts live in [their own GitHub repository](https://github.com/illuminate/contracts). This provides a quick reference point for all available contracts, as well as a single, decoupled package that may be utilized when building packages that interact with Laravel services.
diff --git a/mail.md b/mail.md
index 1ae47e86b1f..14565bec954 100644
--- a/mail.md
+++ b/mail.md
@@ -10,7 +10,7 @@
- [View Data](#view-data)
- [Attachments](#attachments)
- [Inline Attachments](#inline-attachments)
- - [Customizing The SwiftMailer Message](#customizing-the-swiftmailer-message)
+ - [Customizing The Symfony Message](#customizing-the-symfony-message)
- [Markdown Mailables](#markdown-mailables)
- [Generating Markdown Mailables](#generating-markdown-mailables)
- [Writing Markdown Messages](#writing-markdown-messages)
@@ -27,7 +27,7 @@
## Introduction
-Sending email doesn't have to be complicated. Laravel provides a clean, simple email API powered by the popular [SwiftMailer](https://swiftmailer.symfony.com/) library. Laravel and SwiftMailer provide drivers for sending email via SMTP, Mailgun, Postmark, Amazon SES, and `sendmail`, allowing you to quickly get started sending mail through a local or cloud based service of your choice.
+Sending email doesn't have to be complicated. Laravel provides a clean, simple email API powered by the popular [Symfony Mailer](https://symfony.com/doc/6.0/mailer.html) component. Laravel and Symfony Mailer provide drivers for sending email via SMTP, Mailgun, Postmark, Amazon SES, and `sendmail`, allowing you to quickly get started sending mail through a local or cloud based service of your choice.
### Configuration
@@ -39,14 +39,16 @@ Within your `mail` configuration file, you will find a `mailers` configuration a
### Driver / Transport Prerequisites
-The API based drivers such as Mailgun and Postmark are often simpler and faster than sending mail via SMTP servers. Whenever possible, we recommend that you use one of these drivers. All of the API based drivers require the Guzzle HTTP library, which may be installed via the Composer package manager:
-
- composer require guzzlehttp/guzzle
+The API based drivers such as Mailgun and Postmark are often simpler and faster than sending mail via SMTP servers. Whenever possible, we recommend that you use one of these drivers.
#### Mailgun Driver
-To use the Mailgun driver, first install the Guzzle HTTP library. Then, set the `default` option in your `config/mail.php` configuration file to `mailgun`. Next, verify that your `config/services.php` configuration file contains the following options:
+To use the Mailgun driver, install Symfony's Mailgun Mailer transport via Composer:
+
+ composer require symfony/mailgun-mailer
+
+Next, set the `default` option in your application's `config/mail.php` configuration file to `mailgun`. After configuring your application's default mailer, verify that your `config/services.php` configuration file contains the following options:
'mailgun' => [
'domain' => env('MAILGUN_DOMAIN'),
@@ -64,11 +66,11 @@ If you are not using the United States [Mailgun region](https://documentation.ma
#### Postmark Driver
-To use the Postmark driver, install Postmark's SwiftMailer transport via Composer:
+To use the Postmark driver, install Symfony's Postmark Mailer transport via Composer:
- composer require wildbit/swiftmailer-postmark
+ composer require symfony/postmark-mailer
-Next, install the Guzzle HTTP library and set the `default` option in your `config/mail.php` configuration file to `postmark`. Finally, verify that your `config/services.php` configuration file contains the following options:
+Next, set the `default` option in your application's `config/mail.php` configuration file to `postmark`. After configuring your application's default mailer, verify that your `config/services.php` configuration file contains the following options:
'postmark' => [
'token' => env('POSTMARK_TOKEN'),
@@ -86,10 +88,10 @@ This way you are also able to set up multiple Postmark mailers with different me
#### SES Driver
-To use the Amazon SES driver you must first install the Amazon AWS SDK for PHP. You may install this library via the Composer package manager:
+To use the SES driver, install Symfony's Amazon Mailer transport via Composer:
```bash
-composer require aws/aws-sdk-php
+composer require symfony/amazon-mailer
```
Next, set the `default` option in your `config/mail.php` configuration file to `ses` and verify that your `config/services.php` configuration file contains the following options:
@@ -420,11 +422,13 @@ If you already have a raw image data string you wish to embed into an email temp