# UNotifier **Repository Path**: joenahm/UNotifier ## Basic Information - **Project Name**: UNotifier - **Description**: 给U+系统做的,有通知自动发邮件的脚本 - **Primary Language**: Python - **License**: GPL-3.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 2 - **Created**: 2019-04-12 - **Last Updated**: 2024-11-03 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # UNotifier 给U+系统做的,有通知自动发邮件的脚本 ### 使用说明 - 首先将本项目下载到本地 [点击下载](https://gitee.com/joenahm/UNotifier/repository/archive/master.zip),本项目用python语言编写,如果没有python环境请先下载python环境:[点击下载python](https://www.python.org/ftp/python/3.7.3/python-3.7.3.exe) - 使用前需先在 [`config.json` ](config.json) 中设置U+的用户信息和邮箱账户信息 ``` // config.json 字段说明及示例 { // 邮箱服务器(一般不需要改动) "host": "smtp.qq.com", // U+的用户名 "uName": "aaaaa", // U+的密码 "uPassword": "aaaaaaa" // 电子邮箱(接收通知的邮箱) "email": "1162045001@qq.com", // 邮箱授权码(不是邮箱密码) "authCode": "aaaaaaa", } ``` > 获取QQ邮箱授权码说明 [点击查看官方教程](https://service.mail.qq.com/cgi-bin/help?subtype=1&&id=28&&no=1001256) - 启动脚本 - Windows用户运行 [`run.bat`](run.bat) - MacOS、Linux用户运行 [`run.sh`](run.sh) 即可启动此脚本 > 注意脚本不能关闭,关闭将无法工作! 如果脚本退出,请检查config.json中用户信息是否正确!