diff options
author | Frédéric Guillot <fred@kanboard.net> | 2014-08-15 17:23:41 -0700 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2014-08-15 17:23:41 -0700 |
commit | 9eeded33f68872515954a2fc177fcb47a9273ae9 (patch) | |
tree | f3ef9507e087ca6bf3ce624232da240a8689b051 /vendor/swiftmailer/classes/Swift/Plugins/Reporters | |
parent | c539bdc8ab746c5afd48cf87de057dc38d50adac (diff) |
Add email notifications
Diffstat (limited to 'vendor/swiftmailer/classes/Swift/Plugins/Reporters')
-rw-r--r-- | vendor/swiftmailer/classes/Swift/Plugins/Reporters/HitReporter.php | 59 | ||||
-rw-r--r-- | vendor/swiftmailer/classes/Swift/Plugins/Reporters/HtmlReporter.php | 39 |
2 files changed, 98 insertions, 0 deletions
diff --git a/vendor/swiftmailer/classes/Swift/Plugins/Reporters/HitReporter.php b/vendor/swiftmailer/classes/Swift/Plugins/Reporters/HitReporter.php new file mode 100644 index 00000000..ea60f51d --- /dev/null +++ b/vendor/swiftmailer/classes/Swift/Plugins/Reporters/HitReporter.php @@ -0,0 +1,59 @@ +<?php + +/* + * This file is part of SwiftMailer. + * (c) 2004-2009 Chris Corbyn + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +/** + * A reporter which "collects" failures for the Reporter plugin. + * + * @author Chris Corbyn + */ +class Swift_Plugins_Reporters_HitReporter implements Swift_Plugins_Reporter +{ + /** + * The list of failures. + * + * @var array + */ + private $_failures = array(); + + private $_failures_cache = array(); + + /** + * Notifies this ReportNotifier that $address failed or succeeded. + * + * @param Swift_Mime_Message $message + * @param string $address + * @param int $result from {@link RESULT_PASS, RESULT_FAIL} + */ + public function notify(Swift_Mime_Message $message, $address, $result) + { + if (self::RESULT_FAIL == $result && !isset($this->_failures_cache[$address])) { + $this->_failures[] = $address; + $this->_failures_cache[$address] = true; + } + } + + /** + * Get an array of addresses for which delivery failed. + * + * @return array + */ + public function getFailedRecipients() + { + return $this->_failures; + } + + /** + * Clear the buffer (empty the list). + */ + public function clear() + { + $this->_failures = $this->_failures_cache = array(); + } +} diff --git a/vendor/swiftmailer/classes/Swift/Plugins/Reporters/HtmlReporter.php b/vendor/swiftmailer/classes/Swift/Plugins/Reporters/HtmlReporter.php new file mode 100644 index 00000000..4480d255 --- /dev/null +++ b/vendor/swiftmailer/classes/Swift/Plugins/Reporters/HtmlReporter.php @@ -0,0 +1,39 @@ +<?php + +/* + * This file is part of SwiftMailer. + * (c) 2004-2009 Chris Corbyn + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +/** + * A HTML output reporter for the Reporter plugin. + * + * @author Chris Corbyn + */ +class Swift_Plugins_Reporters_HtmlReporter implements Swift_Plugins_Reporter +{ + /** + * Notifies this ReportNotifier that $address failed or succeeded. + * + * @param Swift_Mime_Message $message + * @param string $address + * @param int $result from {@see RESULT_PASS, RESULT_FAIL} + */ + public function notify(Swift_Mime_Message $message, $address, $result) + { + if (self::RESULT_PASS == $result) { + echo "<div style=\"color: #fff; background: #006600; padding: 2px; margin: 2px;\">" . PHP_EOL; + echo "PASS " . $address . PHP_EOL; + echo "</div>" . PHP_EOL; + flush(); + } else { + echo "<div style=\"color: #fff; background: #880000; padding: 2px; margin: 2px;\">" . PHP_EOL; + echo "FAIL " . $address . PHP_EOL; + echo "</div>" . PHP_EOL; + flush(); + } + } +} |