kopia lustrzana https://github.com/newroco/mail2deck
Delete mail after processing and use psr-4 for autoload. fixes #17
rodzic
a809d456cd
commit
395d9ed512
|
@ -1,5 +1,10 @@
|
||||||
{
|
{
|
||||||
"require": {
|
"require": {
|
||||||
"league/html-to-markdown": "^5.1"
|
"league/html-to-markdown": "^5.1"
|
||||||
|
},
|
||||||
|
"autoload": {
|
||||||
|
"psr-4": {
|
||||||
|
"Mail2Deck\\": "lib/"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,4 +11,5 @@ define("MAIL_PASSWORD", "****");
|
||||||
define("DECODE_SPECIAL_CHARACTERS", true); //requires mbstring, if false special characters (like öäüß) won't be displayed correctly
|
define("DECODE_SPECIAL_CHARACTERS", true); //requires mbstring, if false special characters (like öäüß) won't be displayed correctly
|
||||||
define("ASSIGN_SENDER", true); // if true, sender will be assigned to card if has NC account
|
define("ASSIGN_SENDER", true); // if true, sender will be assigned to card if has NC account
|
||||||
define("MAIL_NOTIFICATION", true); // if true, send notifications when a new card was created or an error occured
|
define("MAIL_NOTIFICATION", true); // if true, send notifications when a new card was created or an error occured
|
||||||
|
define("DELETE_MAIL_AFTER_PROCESSING", true);
|
||||||
?>
|
?>
|
||||||
|
|
17
index.php
17
index.php
|
@ -2,15 +2,17 @@
|
||||||
error_reporting(E_ERROR | E_PARSE);
|
error_reporting(E_ERROR | E_PARSE);
|
||||||
require __DIR__ . '/vendor/autoload.php';
|
require __DIR__ . '/vendor/autoload.php';
|
||||||
require_once("config.php");
|
require_once("config.php");
|
||||||
require_once('lib/DeckClass.php');
|
|
||||||
require_once('lib/MailClass.php');
|
use Mail2Deck\MailClass;
|
||||||
require_once('lib/ConvertToMD.php');
|
use Mail2Deck\DeckClass;
|
||||||
|
use Mail2Deck\ConvertToMD;
|
||||||
|
|
||||||
$inbox = new MailClass();
|
$inbox = new MailClass();
|
||||||
$emails = $inbox->getNewMessages();
|
$emails = $inbox->getNewMessages();
|
||||||
|
|
||||||
if ($emails)
|
if(!$emails) return; // nothing to do
|
||||||
for ($j = 0; $j < count($emails) && $j < 5; $j++) {
|
|
||||||
|
for ($j = 0; $j < count($emails) && $j < 5; $j++) {
|
||||||
$structure = $inbox->fetchMessageStructure($emails[$j]);
|
$structure = $inbox->fetchMessageStructure($emails[$j]);
|
||||||
$base64encode = false;
|
$base64encode = false;
|
||||||
if($structure->encoding == 3) {
|
if($structure->encoding == 3) {
|
||||||
|
@ -114,5 +116,10 @@ if ($emails)
|
||||||
if(!$response) {
|
if(!$response) {
|
||||||
foreach($attNames as $attachment) unlink(getcwd() . "/attachments/" . $attachment);
|
foreach($attNames as $attachment) unlink(getcwd() . "/attachments/" . $attachment);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//remove email after processing
|
||||||
|
if(DELETE_MAIL_AFTER_PROCESSING) {
|
||||||
|
$inbox->delete($emails[$j]);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
?>
|
?>
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
namespace Mail2Deck;
|
||||||
|
|
||||||
use League\HTMLToMarkdown\HtmlConverter;
|
use League\HTMLToMarkdown\HtmlConverter;
|
||||||
|
|
||||||
class ConvertToMD {
|
class ConvertToMD {
|
||||||
|
@ -18,5 +20,3 @@ class ConvertToMD {
|
||||||
return $this->converter->convert($this->html);
|
return $this->converter->convert($this->html);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
?>
|
|
|
@ -1,5 +1,10 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
namespace Mail2Deck;
|
||||||
|
|
||||||
|
use stdClass;
|
||||||
|
use CURLFile;
|
||||||
|
|
||||||
class DeckClass {
|
class DeckClass {
|
||||||
private $responseCode;
|
private $responseCode;
|
||||||
|
|
||||||
|
@ -141,4 +146,3 @@ class DeckClass {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
?>
|
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
namespace Mail2Deck;
|
||||||
|
|
||||||
class MailClass {
|
class MailClass {
|
||||||
private $inbox;
|
private $inbox;
|
||||||
|
|
||||||
|
@ -60,8 +62,8 @@ class MailClass {
|
||||||
);
|
);
|
||||||
|
|
||||||
if($response) {
|
if($response) {
|
||||||
$body = "<h1>A new card has been created on board <a href=\"" . NC_SERVER . "index.php/apps/deck/#/board/{$response->board}" . "\">{$response->boardTitle}</a>.</h1>
|
$body = "<h1>A new card has been created on board <a href=\"" . NC_SERVER . "/index.php/apps/deck/#/board/{$response->board}" . "\">{$response->boardTitle}</a>.</h1>
|
||||||
<p>Check out this <a href=\"" . NC_SERVER . "index.php/apps/deck/#/board/{$response->board}/card/{$response->id}" . "\">link</a> to see the newly created card.</p>
|
<p>Check out this <a href=\"" . NC_SERVER . "/index.php/apps/deck/#/board/{$response->board}/card/{$response->id}" . "\">link</a> to see the newly created card.</p>
|
||||||
<p>Card ID is {$response->id}</p>";
|
<p>Card ID is {$response->id}</p>";
|
||||||
$subject = 'A new card has been created!';
|
$subject = 'A new card has been created!';
|
||||||
} else {
|
} else {
|
||||||
|
@ -76,4 +78,17 @@ class MailClass {
|
||||||
|
|
||||||
mail($sender, $subject, $message, $headers);
|
mail($sender, $subject, $message, $headers);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Deletes a mail
|
||||||
|
*
|
||||||
|
* @param $email email id that you want to delete
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function delete(int $email)
|
||||||
|
{
|
||||||
|
imap_delete($this->inbox, $email);
|
||||||
|
imap_expunge($this->inbox);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Ładowanie…
Reference in New Issue