├── .gitignore ├── Action.php ├── LICENSE ├── Logs.php ├── Plugin.php ├── README.md ├── lib ├── AliYunEmailService.php ├── Contract │ └── ServiceInterface.php ├── DingTalkBotService.php ├── EnterpriseWeChatService.php ├── Extend │ ├── PHPMailer.php │ └── SMTP.php ├── OfficialAccountService.php ├── QQService.php ├── Service.php ├── SmtpService.php └── WeChatService.php ├── sql ├── install │ ├── Mysql.sql │ └── SQLite.sql └── uninstall │ ├── Mysql.sql │ └── SQLite.sql └── theme ├── author.html └── reply.html /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | -------------------------------------------------------------------------------- /Action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Player626/CommentPush/HEAD/Action.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Player626/CommentPush/HEAD/LICENSE -------------------------------------------------------------------------------- /Logs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Player626/CommentPush/HEAD/Logs.php -------------------------------------------------------------------------------- /Plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Player626/CommentPush/HEAD/Plugin.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Player626/CommentPush/HEAD/README.md -------------------------------------------------------------------------------- /lib/AliYunEmailService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Player626/CommentPush/HEAD/lib/AliYunEmailService.php -------------------------------------------------------------------------------- /lib/Contract/ServiceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Player626/CommentPush/HEAD/lib/Contract/ServiceInterface.php -------------------------------------------------------------------------------- /lib/DingTalkBotService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Player626/CommentPush/HEAD/lib/DingTalkBotService.php -------------------------------------------------------------------------------- /lib/EnterpriseWeChatService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Player626/CommentPush/HEAD/lib/EnterpriseWeChatService.php -------------------------------------------------------------------------------- /lib/Extend/PHPMailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Player626/CommentPush/HEAD/lib/Extend/PHPMailer.php -------------------------------------------------------------------------------- /lib/Extend/SMTP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Player626/CommentPush/HEAD/lib/Extend/SMTP.php -------------------------------------------------------------------------------- /lib/OfficialAccountService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Player626/CommentPush/HEAD/lib/OfficialAccountService.php -------------------------------------------------------------------------------- /lib/QQService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Player626/CommentPush/HEAD/lib/QQService.php -------------------------------------------------------------------------------- /lib/Service.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Player626/CommentPush/HEAD/lib/Service.php -------------------------------------------------------------------------------- /lib/SmtpService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Player626/CommentPush/HEAD/lib/SmtpService.php -------------------------------------------------------------------------------- /lib/WeChatService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Player626/CommentPush/HEAD/lib/WeChatService.php -------------------------------------------------------------------------------- /sql/install/Mysql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Player626/CommentPush/HEAD/sql/install/Mysql.sql -------------------------------------------------------------------------------- /sql/install/SQLite.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Player626/CommentPush/HEAD/sql/install/SQLite.sql -------------------------------------------------------------------------------- /sql/uninstall/Mysql.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE IF EXISTS `{prefix}comment_push` -------------------------------------------------------------------------------- /sql/uninstall/SQLite.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE IF EXISTS {prefix}comment_push -------------------------------------------------------------------------------- /theme/author.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Player626/CommentPush/HEAD/theme/author.html -------------------------------------------------------------------------------- /theme/reply.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Player626/CommentPush/HEAD/theme/reply.html --------------------------------------------------------------------------------