VerifyCode.php 490 B

123456789101112131415161718192021222324252627
  1. <?php namespace App\Facades\Servers\Email;
  2. use Illuminate\Support\Facades\Facade;
  3. /**
  4. * 邮件发送
  5. *
  6. * @method static array sendSmtpEmail($to, $subject, $body, $from) 发送邮件内容
  7. *
  8. * @see \App\Servers\Email\VerifyCode
  9. *
  10. *
  11. */
  12. class VerifyCode extends Facade
  13. {
  14. /**
  15. * Get the registered name of the component.
  16. *
  17. * @return string
  18. */
  19. protected static function getFacadeAccessor()
  20. {
  21. return '\App\Servers\Email\VerifyCode';
  22. }
  23. }
  24. ?>