-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add upgrade hint for MAIL_DRIVER -> MAIL_MAILER
- Loading branch information
Showing
3 changed files
with
4 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -54,8 +54,8 @@ AWS_DUAL_STACK_ENDPOINT=[true/false] | |
## Mail configuration | ||
[email protected] | ||
MAIL_FROM_NAME=LinkAce | ||
# Set the driver used for sending email here, default is `smtp` | ||
MAIL_DRIVER=smtp | ||
# Set the driver used for sending email here, default is `log` | ||
MAIL_MAILER=smtp | ||
# Set the SMTP host and its port here | ||
MAIL_HOST=smtp.mailtrap.io | ||
MAIL_PORT=2525 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,7 +19,7 @@ Please add the following block to your .env file and change the values according | |
|:--|:--|:--|:--| | ||
| `MAIL_FROM_ADDRESS` | any email address | `[email protected]` | The email address you are sending from | | ||
| `MAIL_FROM_NAME` | any string | `LinkAce` | The name you are sending from | | ||
| `MAIL_DRIVER` | `log`, `smtp`, `sendmail`, `mailgun`, `ses`, `postmark` | `smtp` | The method of sending email, more details see [the Mail configuration docs](https://laravel.com/docs/9.x/mail) | | ||
| `MAIL_MAILER` | `log`, `smtp`, `sendmail`, `mailgun`, `ses`, `postmark` | `smtp` | The method of sending email, more details see [the Mail configuration docs](https://laravel.com/docs/9.x/mail) | | ||
| `MAIL_HOST` | any string | `smtp.mailgun.org` | SMTP only: the host sending email from | | ||
| `MAIL_PORT` | any number | `587` | SMTP only: the post for connecting to the host | | ||
| `MAIL_USERNAME` | any string | none | SMTP only: the username for connecting to the host | | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters