Email.php 238 B

1234567891011121314151617
  1. <?php
  2. namespace app\facade;
  3. use think\Facade;
  4. /**
  5. * @method sendEmail($toEmail, $tp) static
  6. */
  7. class Email extends Facade
  8. {
  9. protected static function getFacadeClass(): string
  10. {
  11. return 'app\common\util\Email';
  12. }
  13. }