Fix email filtering for tournament registrations

Remove check for online registration when filtering emails to send
main
Razmig Sarkissian 3 weeks ago
parent 0158ce150d
commit 80b6bc1136
  1. 2
      tournaments/services/email_service.py

@ -749,7 +749,7 @@ class TournamentEmailService:
for player in player_registrations:
# Check both email and contact_email fields
player_email = player.player_contact()
if not player_email or not player.registered_online:
if not player_email:
continue
if player_email in processed_emails:
continue

Loading…
Cancel
Save