Do not send bulletin email if no items

This commit is contained in:
Yingtong Li 2019-08-11 22:48:50 +10:00
parent 487c2f3650
commit acd26e7160
Signed by: RunasSudo
GPG Key ID: 7234E476BF21C61A
1 changed files with 4 additions and 0 deletions

View File

@ -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)