chburhan64 commited on
Commit
b464319
·
verified ·
1 Parent(s): 92d2e30

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -0
app.py CHANGED
@@ -79,10 +79,13 @@ def email_sender_agent(context):
79
  success += 1
80
  except Exception as e:
81
  st.error(f"❌ Failed to send to {recipient}: {e}")
 
82
 
83
  context["status"] = f"✅ Email sent to {success} recipient(s)."
84
  return context
85
 
 
 
86
  # ==========================
87
  # 🧠 TTS and Playback
88
  # ==========================
 
79
  success += 1
80
  except Exception as e:
81
  st.error(f"❌ Failed to send to {recipient}: {e}")
82
+ print(f"[DEBUG] Email send error for {recipient}: {e}") # Debug print
83
 
84
  context["status"] = f"✅ Email sent to {success} recipient(s)."
85
  return context
86
 
87
+
88
+
89
  # ==========================
90
  # 🧠 TTS and Playback
91
  # ==========================