Do not send bulletin email if no items
This commit is contained in:
parent
487c2f3650
commit
acd26e7160
@ -100,6 +100,10 @@ class Command(BaseCommand):
|
||||
if sspromotions.models.BulletinSubscription.is_member_subscribed(member):
|
||||
template_args = sspromotions.utils.bulletin_args(member, sspromotions.models.Group.get_member_groups(member), events, bulbegin, bulend)
|
||||
|
||||
if len(template_args['groups']) == 0 and len(template_args['more']) == 0:
|
||||
self.stdout.write('Skipping {} at {}'.format(member.id, member.email))
|
||||
continue
|
||||
|
||||
content_html = premailer.Premailer(template_html.render(template_args), cssutils_logging_level=logging.ERROR, strip_important=False).transform()
|
||||
content_txt = template_txt.render(template_args)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user