From be7da7ab048777064e2e1648e416ddb4048f58f7 Mon Sep 17 00:00:00 2001 From: Alexander Skvortsov Date: Thu, 8 Apr 2021 16:45:15 -0400 Subject: [PATCH 1/2] Document mailgun's need for guzzle --- docs/mail.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/mail.md b/docs/mail.md index d7238d938..b2a9b3ec5 100644 --- a/docs/mail.md +++ b/docs/mail.md @@ -18,6 +18,8 @@ The `mail` driver will try to use the sendmail / postfix email system included i This driver uses your [Mailgun](https://www.mailgun.com/) account to send emails. You'll need a secret key, as well as the domain and region from your mailgun configuration. +To use the mailgun driver, you'll need to install the `guzzle` composer package. You can do this by running `composer require guzzlehttp/guzzle:^6.0|^7.0` in your Flarum install's root directory. + ### Log The log mail driver DOES NOT SEND MAIL, and is primarily used by developers. It writes the content of any emails to the log file in `FLARUM_ROOT_DIRECTORY/storage/logs`. From 3e094451724f675c0facfd7df534ad722046f0b1 Mon Sep 17 00:00:00 2001 From: Alexander Skvortsov <38059171+askvortsov1@users.noreply.github.com> Date: Thu, 8 Apr 2021 18:38:19 -0400 Subject: [PATCH 2/2] Update mail.md --- docs/mail.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/mail.md b/docs/mail.md index b2a9b3ec5..3f354df6f 100644 --- a/docs/mail.md +++ b/docs/mail.md @@ -18,7 +18,7 @@ The `mail` driver will try to use the sendmail / postfix email system included i This driver uses your [Mailgun](https://www.mailgun.com/) account to send emails. You'll need a secret key, as well as the domain and region from your mailgun configuration. -To use the mailgun driver, you'll need to install the `guzzle` composer package. You can do this by running `composer require guzzlehttp/guzzle:^6.0|^7.0` in your Flarum install's root directory. +To use the mailgun driver, you'll need to install the Guzzle composer package (a PHP HTTP client). You can do this by running `composer require guzzlehttp/guzzle:^6.0|^7.0` in your Flarum install's root directory. ### Log