feat: 添加PHPMailer依赖并实现邮箱验证功能

- 添加PHPMailer依赖用于发送验证邮件
- 实现开发者邮箱验证功能
- 添加SMTP邮件配置到config.php
- 创建邮箱验证模板文件
- 修改上传应用逻辑要求验证邮箱
- 移除不再使用的SQL文件
This commit is contained in:
2025-07-08 15:24:27 +08:00
parent 6f484ffed7
commit dd71417b3d
96 changed files with 18579 additions and 19 deletions

5
composer.json Normal file
View File

@@ -0,0 +1,5 @@
{
"require": {
"phpmailer/phpmailer": "^6.10"
}
}