diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-06-13 13:17:16 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-06-13 13:17:16 -0400 |
commit | f2abf339120751f11f729606b46927332f886a1d (patch) | |
tree | 46976ea48e812b18903b2bde2d84ab113bc0708f /config.default.php | |
parent | 7ba9b2d9b9b8426aacabcb7e3e4a0c08d2be5444 (diff) |
Add Sendgrid as mail transport
Diffstat (limited to 'config.default.php')
-rw-r--r-- | config.default.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/config.default.php b/config.default.php index e5fe4da3..7c6955e8 100644 --- a/config.default.php +++ b/config.default.php @@ -16,7 +16,7 @@ define('FILES_DIR', 'data/files/'); // E-mail address for the "From" header (notifications) define('MAIL_FROM', 'notifications@kanboard.local'); -// Mail transport available: "smtp", "sendmail", "mail" (PHP mail function), "postmark", "mailgun" +// Mail transport available: "smtp", "sendmail", "mail" (PHP mail function), "postmark", "mailgun", "sendgrid" define('MAIL_TRANSPORT', 'mail'); // SMTP configuration to use when the "smtp" transport is chosen @@ -38,6 +38,10 @@ define('MAILGUN_API_TOKEN', ''); // Mailgun domain name define('MAILGUN_DOMAIN', ''); +// Sendgrid API configuration +define('SENDGRID_API_USER', ''); +define('SENDGRID_API_KEY', ''); + // Database driver: sqlite, mysql or postgres (sqlite by default) define('DB_DRIVER', 'sqlite'); |