diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-06-07 22:17:50 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-06-07 22:17:50 -0400 |
commit | e22da9d32addefa8d739171febcf6f6d0c06ba7b (patch) | |
tree | affb9f8729ac9d4f07dd7f24dff39bfaa9cda0ff /app/Core/EmailClient.php | |
parent | 4f32352fe62e47ad5ea760eb00493bdc061b2407 (diff) |
Add Mailgun API as mail transport
Diffstat (limited to 'app/Core/EmailClient.php')
-rw-r--r-- | app/Core/EmailClient.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/app/Core/EmailClient.php b/app/Core/EmailClient.php index 980f5acc..07687c42 100644 --- a/app/Core/EmailClient.php +++ b/app/Core/EmailClient.php @@ -31,6 +31,9 @@ class EmailClient extends Base } switch (MAIL_TRANSPORT) { + case 'mailgun': + $this->mailgun->sendEmail($email, $name, $subject, $html, $author); + break; case 'postmark': $this->postmark->sendEmail($email, $name, $subject, $html, $author); break; |