Fatal to Telegram monitors your WordPress site for fatal PHP errors and instantly sends detailed crash reports to your Telegram chat. It’s built for developers and sysadmins who want real-time error visibility without digging through logs. 📡 Keep your site monitored even while you sleep.
🔧 Features:
- Sends fatal errors (E_ERROR, E_PARSE, etc.) directly to Telegram
- Configurable Bot Token and Chat ID via Plugin settings page
- Loads early using a special mu-plugin for maximum reliability
- Automatically installs and cleans up the mu-plugin during activation/deactivation

🧪 Debugging Helpers:
Use these helper functions in your code to send custom data to Telegram for debugging:
_ftt("Just a test string");
Sends a plain string message to your configured Telegram chat.
_ftt_array(['a' => 1, 'b' => 2, 'c' => 'hello']);
Sends each key-value pair of an array as a separate Telegram message.
📌 When is this useful?
- You need visibility into silent failures
- You want to debug on staging/production without opening logs
- You’re developing a plugin/theme and want instant crash alerts
Remember: This plugin creates a mu-plugin loader for early error detection. If you deactivate the plugin, the loader will stop working too.