Update smtp.py

This commit is contained in:
SpudGunMan
2024-12-09 21:56:35 -08:00
parent 08e3e21306
commit 1175e23525
+1 -1
View File
@@ -41,7 +41,7 @@ def send_email(to_email, message, nodeID=0):
# check if email is in the ban list
if nodeID in bbs_ban_list:
logger.warning("System: Email blocked for " + nodeID)
logger.warning("System: Email blocked for " + str(nodeID))
return "⛔️Email throttled, try again later"
# Send email
try: