├── .env.example ├── .gitignore ├── App ├── Database.php ├── EvolutionAPI.php ├── GroqChat.php ├── MailService.php ├── Notify.php ├── ParallelRequest.php └── SendGrid.php ├── LICENSE ├── bootstrap.php ├── composer.json ├── composer.lock ├── config.php ├── docker-compose.yaml ├── exemplo.php ├── html ├── index.php └── zap_login.php ├── notify.sql └── readme.md /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliasPereirah/Notify/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliasPereirah/Notify/HEAD/.gitignore -------------------------------------------------------------------------------- /App/Database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliasPereirah/Notify/HEAD/App/Database.php -------------------------------------------------------------------------------- /App/EvolutionAPI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliasPereirah/Notify/HEAD/App/EvolutionAPI.php -------------------------------------------------------------------------------- /App/GroqChat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliasPereirah/Notify/HEAD/App/GroqChat.php -------------------------------------------------------------------------------- /App/MailService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliasPereirah/Notify/HEAD/App/MailService.php -------------------------------------------------------------------------------- /App/Notify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliasPereirah/Notify/HEAD/App/Notify.php -------------------------------------------------------------------------------- /App/ParallelRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliasPereirah/Notify/HEAD/App/ParallelRequest.php -------------------------------------------------------------------------------- /App/SendGrid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliasPereirah/Notify/HEAD/App/SendGrid.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliasPereirah/Notify/HEAD/LICENSE -------------------------------------------------------------------------------- /bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliasPereirah/Notify/HEAD/bootstrap.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliasPereirah/Notify/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliasPereirah/Notify/HEAD/composer.lock -------------------------------------------------------------------------------- /config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliasPereirah/Notify/HEAD/config.php -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliasPereirah/Notify/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /exemplo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliasPereirah/Notify/HEAD/exemplo.php -------------------------------------------------------------------------------- /html/index.php: -------------------------------------------------------------------------------- 1 |