SendListener.php 687 B

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