1<?php 2 3/** 4 * Swift Mailer Send Event Listener Interface 5 * Please read the LICENSE file 6 * @copyright Chris Corbyn <chris@w3style.co.uk> 7 * @author Chris Corbyn <chris@w3style.co.uk> 8 * @package Swift_Events 9 * @license GNU Lesser General Public License 10 */ 11 12/** 13 * Contains the list of methods a plugin requiring the use of a SendEvent must implement 14 * @package Swift_Events 15 * @author Chris Corbyn <chris@w3style.co.uk> 16 */ 17interface Swift_Events_SendListener extends Swift_Events_Listener 18{ 19 /** 20 * Executes when Swift sends a message 21 * @param Swift_Events_SendEvent Information about the message being sent 22 */ 23 public function sendPerformed(Swift_Events_SendEvent $e); 24} 25