From ffd2c13d6cdedbb5861d6efe4b22b0bda2abc560 Mon Sep 17 00:00:00 2001 From: bwdutton Date: Fri, 10 Apr 2020 21:34:27 -0700 Subject: [PATCH] add basic instructions for phpmailer module --- application/config/phpmailer.php | 9 +++++++++ modules/phpmailer/module.info | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/application/config/phpmailer.php b/application/config/phpmailer.php index d1ba9ef9..64aaf95e 100644 --- a/application/config/phpmailer.php +++ b/application/config/phpmailer.php @@ -18,6 +18,15 @@ * Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */ +/** + * to use this module: + * 1) configure your below mail settings + * 2) cd to your main gallery3 folder + * 3) be sure 'composer' for PHP is installed + * 4) run 'composer install' + * 5) enable the phpmailer module in the gallery -> admin -> module area + */ + $config['options'] = array( #'use_smtp' => true, #'use_smtp_auth' => true, diff --git a/modules/phpmailer/module.info b/modules/phpmailer/module.info index 6032ba81..a1b53d90 100644 --- a/modules/phpmailer/module.info +++ b/modules/phpmailer/module.info @@ -1,5 +1,5 @@ name = "phpmailer" -description = "Replaces the built in mail() so you can use SMTP servers, etc" +description = "Replaces the built in mail() so you can use SMTP servers, etc. Look in application/config/phpmailer.php for installation and settings." version = 1 author_name = "Gallery Team" author_url = "https://galleryrevival.com/"