1<?php
2
3/**
4 * Swift Mailer Verbose-sending Plugin View Layer.
5 * Please read the LICENSE file
6 * @author Chris Corbyn <chris@w3style.co.uk>
7 * @package Swift_Plugin
8 * @subpackage VerboseSending
9 * @license GNU Lesser General Public License
10 */
11
12/**
13 * The View layer for the Verbose Sending Plugin
14 * @package Swift_Plugin
15 * @subpackage VerboseSending
16 * @author Chris Corbyn <chris@w3style.co.uk>
17 */
18abstract class Swift_Plugin_VerboseSending_AbstractView
19{
20  /**
21   * Paint the result of a send operation
22   * @param string The email address that was tried
23   * @param boolean True if the message was successfully sent
24   */
25  abstract public function paintResult($address, $result);
26}
27