IdGenerator.php 433 B

12345678910111213141516171819202122
  1. <?php
  2. /*
  3. * This file is part of SwiftMailer.
  4. * (c) 2004-2009 Chris Corbyn
  5. *
  6. * For the full copyright and license information, please view the LICENSE
  7. * file that was distributed with this source code.
  8. */
  9. /**
  10. * Message ID generator.
  11. */
  12. interface Swift_IdGenerator
  13. {
  14. /**
  15. * Returns a globally unique string to use for Message-ID or Content-ID.
  16. *
  17. * @return string
  18. */
  19. public function generateId();
  20. }