From 9d9e3afba2054bfa23ba6f019b7c8885c2d8415e Mon Sep 17 00:00:00 2001 From: Frederic Guillot Date: Sat, 6 Jun 2015 14:10:31 -0400 Subject: Improve email sending system and add Postmark as mail transport --- config.default.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'config.default.php') diff --git a/config.default.php b/config.default.php index 7f379f5c..99698420 100644 --- a/config.default.php +++ b/config.default.php @@ -14,7 +14,7 @@ define('FILES_DIR', 'data/files/'); // E-mail address for the "From" header (notifications) define('MAIL_FROM', 'notifications@kanboard.local'); -// Mail transport to use: "smtp", "sendmail" or "mail" (PHP mail function) +// Mail transport to use: "smtp", "sendmail", "mail" (PHP mail function), "postmark" define('MAIL_TRANSPORT', 'mail'); // SMTP configuration to use when the "smtp" transport is chosen @@ -27,6 +27,9 @@ define('MAIL_SMTP_ENCRYPTION', null); // Valid values are "null", "ssl" or "tls" // Sendmail command to use when the transport is "sendmail" define('MAIL_SENDMAIL_COMMAND', '/usr/sbin/sendmail -bs'); +// Postmark API token (used to send emails through their API) +define('POSTMARK_API_TOKEN', ''); + // Database driver: sqlite, mysql or postgres (sqlite by default) define('DB_DRIVER', 'sqlite'); -- cgit v1.2.3