tp/app/admin/route/routes/email.php

12 lines
439 B
PHP

<?php
use think\facade\Route;
// 邮箱管理路由
Route::group('email', function () {
// 获取邮箱信息
Route::get('info', 'app\admin\controller\System\EmailController/getEmailInfo');
// 编辑邮箱信息
Route::post('editinfo', 'app\admin\controller\System\EmailController/editEmailInfo');
// 发送测试邮件
Route::post('sendtestemail', 'app\admin\controller\System\EmailController/sendTestEmail');
});