summaryrefslogtreecommitdiff
path: root/app/Core/EmailClient.php
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2015-10-16 20:50:12 -0400
committerFrederic Guillot <fred@kanboard.net>2015-10-16 20:50:12 -0400
commitf99a3c501fd6ed7b4914b8d6e855489c2ce5b219 (patch)
tree976276d6acfff78923e4549b0ef9ea94c5e2cb0d /app/Core/EmailClient.php
parent9c9ed02cd7ebc5dbbc99bcaed6f80988ce8a9677 (diff)
Make mail transports pluggable and move integrations to plugins
- Postmark: https://github.com/kanboard/plugin-postmark - Mailgun: https://github.com/kanboard/plugin-mailgun - Sendgrid: https://github.com/kanboard/plugin-sendgrid
Diffstat (limited to 'app/Core/EmailClient.php')
-rw-r--r--app/Core/EmailClient.php49
1 files changed, 0 insertions, 49 deletions
diff --git a/app/Core/EmailClient.php b/app/Core/EmailClient.php
deleted file mode 100644
index 38d6b3f1..00000000
--- a/app/Core/EmailClient.php
+++ /dev/null
@@ -1,49 +0,0 @@
-<?php
-
-namespace Kanboard\Core;
-
-/**
- * Mail client
- *
- * @package core
- * @author Frederic Guillot
- */
-class EmailClient extends Base
-{
- /**
- * Send a HTML email
- *
- * @access public
- * @param string $email
- * @param string $name
- * @param string $subject
- * @param string $html
- */
- public function send($email, $name, $subject, $html)
- {
- $this->container['logger']->debug('Sending email to '.$email.' ('.MAIL_TRANSPORT.')');
-
- $start_time = microtime(true);
- $author = 'Kanboard';
-
- if (Session::isOpen() && $this->userSession->isLogged()) {
- $author = e('%s via Kanboard', $this->user->getFullname($this->session['user']));
- }
-
- switch (MAIL_TRANSPORT) {
- case 'sendgrid':
- $this->sendgrid->sendEmail($email, $name, $subject, $html, $author);
- break;
- case 'mailgun':
- $this->mailgun->sendEmail($email, $name, $subject, $html, $author);
- break;
- case 'postmark':
- $this->postmark->sendEmail($email, $name, $subject, $html, $author);
- break;
- default:
- $this->smtp->sendEmail($email, $name, $subject, $html, $author);
- }
-
- $this->container['logger']->debug('Email sent in '.round(microtime(true) - $start_time, 6).' seconds');
- }
-}