SendException.php 740 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. /***************************************************\
  3. *
  4. * Mailer (https://github.com/txthinking/Mailer)
  5. *
  6. * A lightweight PHP SMTP mail sender.
  7. * Implement RFC0821, RFC0822, RFC1869, RFC2045, RFC2821
  8. *
  9. * Support html body, don't worry that the receiver's
  10. * mail client can't support html, because Mailer will
  11. * send both text/plain and text/html body, so if the
  12. * mail client can't support html, it will display the
  13. * text/plain body.
  14. *
  15. * Create Date 2012-07-25.
  16. * Under the MIT license.
  17. *
  18. \***************************************************/
  19. /**
  20. * Created by PhpStorm.
  21. * User: msowers
  22. * Date: 3/30/15
  23. * Time: 1:47 PM
  24. */
  25. namespace Tx\Mailer\Exceptions;
  26. class SendException extends SMTPException
  27. {
  28. }