25 lines
433 B
PHP
25 lines
433 B
PHP
<?php
|
|
/**
|
|
* @copyright Copyright (c) 2023 李志强
|
|
* @author 李志强
|
|
* @link https://www.yunzer.cn
|
|
*/
|
|
namespace app\admin\controller;
|
|
|
|
use app\base\BaseController;
|
|
use app\admin\validate\ConfCheck;
|
|
use think\exception\ValidateException;
|
|
use think\facade\Db;
|
|
use think\facade\View;
|
|
use PHPMailer\PHPMailer\PHPMailer;
|
|
use PHPMailer\PHPMailer\SMTP;
|
|
use PHPMailer\PHPMailer\Exception;
|
|
|
|
class Mail extends BaseController
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
?>
|