diff --git a/src/Managing.Api/Controllers/UserController.cs b/src/Managing.Api/Controllers/UserController.cs index 9ef1b5f..8154b2d 100644 --- a/src/Managing.Api/Controllers/UserController.cs +++ b/src/Managing.Api/Controllers/UserController.cs @@ -108,16 +108,12 @@ public class UserController : BaseController try { var welcomeMessage = $"🎉 **Trading Bot - Welcome!**\n\n" + - $"┌─────────────────────────────┐\n" + - $"│ CHANNEL CONFIGURED ✅ │\n" + - $"└─────────────────────────────┘\n\n" + $"🎯 **Agent:** {user.Name}\n" + $"📡 **Channel ID:** {telegramChannel}\n" + $"⏰ **Setup Time:** {DateTime.UtcNow:MMM dd, yyyy • HH:mm:ss} UTC\n\n" + $"🔔 **Notification Types:**\n" + $"• 📈 Position Opens & Closes\n" + $"• 🤖 Bot configuration changes\n\n" + - $"━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\n" + $"🚀 **Welcome aboard!** Your trading notifications are now live."; await _webhookService.SendMessage(welcomeMessage, telegramChannel); @@ -149,16 +145,12 @@ public class UserController : BaseController try { var testMessage = $"🚀 **Trading Bot - Channel Test**\n\n" + - $"┌─────────────────────────────┐\n" + - $"│ CONNECTION SUCCESSFUL ✅ │\n" + - $"└─────────────────────────────┘\n\n" + $"🎯 **Agent:** {user.Name}\n" + $"📡 **Channel ID:** {user.TelegramChannel}\n" + $"⏰ **Test Time:** {DateTime.UtcNow:MMM dd, yyyy • HH:mm:ss} UTC\n\n" + $"🔔 **You will receive notifications for:**\n" + $"• 📈 Position Opens & Closes\n" + $"• 🤖 Bot configuration changes\n\n" + - $"━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\n" + $"🎉 **Ready to trade!** Your notifications are now active."; await _webhookService.SendMessage(testMessage, user.TelegramChannel);