diff --git a/src/pretix/control/forms/vouchers.py b/src/pretix/control/forms/vouchers.py index f80a014e0f..b315b09460 100644 --- a/src/pretix/control/forms/vouchers.py +++ b/src/pretix/control/forms/vouchers.py @@ -340,6 +340,9 @@ class VoucherBulkForm(VoucherForm): def clean_send_recipients(self): raw = self.cleaned_data['send_recipients'] + if self.cleaned_data.get('send', None) is False: + # No need to validate addresses if the section was turned off + return [] if not raw: return [] r = raw.split('\n')