From f99a3c501fd6ed7b4914b8d6e855489c2ce5b219 Mon Sep 17 00:00:00 2001 From: Frederic Guillot Date: Fri, 16 Oct 2015 20:50:12 -0400 Subject: 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 --- app/Integration/Postmark.php | 94 -------------------------------------------- 1 file changed, 94 deletions(-) delete mode 100644 app/Integration/Postmark.php (limited to 'app/Integration/Postmark.php') diff --git a/app/Integration/Postmark.php b/app/Integration/Postmark.php deleted file mode 100644 index b57f92d4..00000000 --- a/app/Integration/Postmark.php +++ /dev/null @@ -1,94 +0,0 @@ - sprintf('%s <%s>', $author, MAIL_FROM), - 'To' => sprintf('%s <%s>', $name, $email), - 'Subject' => $subject, - 'HtmlBody' => $html, - ); - - $this->httpClient->postJson('https://api.postmarkapp.com/email', $payload, $headers); - } - - /** - * Parse incoming email - * - * @access public - * @param array $payload Incoming email - * @return boolean - */ - public function receiveEmail(array $payload) - { - if (empty($payload['From']) || empty($payload['Subject']) || empty($payload['MailboxHash'])) { - return false; - } - - // The user must exists in Kanboard - $user = $this->user->getByEmail($payload['From']); - - if (empty($user)) { - $this->container['logger']->debug('Postmark: ignored => user not found'); - return false; - } - - // The project must have a short name - $project = $this->project->getByIdentifier($payload['MailboxHash']); - - if (empty($project)) { - $this->container['logger']->debug('Postmark: ignored => project not found'); - return false; - } - - // The user must be member of the project - if (! $this->projectPermission->isMember($project['id'], $user['id'])) { - $this->container['logger']->debug('Postmark: ignored => user is not member of the project'); - return false; - } - - // Get the Markdown contents - if (! empty($payload['HtmlBody'])) { - $description = $this->htmlConverter->convert($payload['HtmlBody']); - } - else if (! empty($payload['TextBody'])) { - $description = $payload['TextBody']; - } - else { - $description = ''; - } - - // Finally, we create the task - return (bool) $this->taskCreation->create(array( - 'project_id' => $project['id'], - 'title' => $payload['Subject'], - 'description' => $description, - 'creator_id' => $user['id'], - )); - } -} -- cgit v1.2.3