mirror of
https://github.com/bspeice/UNCCGameDay-Server
synced 2024-12-04 13:58:14 -05:00
Change the format of the RSVP email
This commit is contained in:
parent
cb7d9f9db3
commit
e4a73870ff
@ -16,6 +16,7 @@ class Command(BaseCommand):
|
||||
|
||||
for user in RegisteredUser.objects.filter(date_registered__gt=
|
||||
(datetime.today() - timedelta(7))):
|
||||
message += user.first_name + ' ' + user.last_name + '\n'
|
||||
message += user.first_name + ' ' + user.last_name + ' - ' + \
|
||||
user.date_registered.strftime('%I:%M %p %m/%d/%Y') + '\n'
|
||||
|
||||
send_mail(subject, message, from_,recipient_list)
|
||||
|
Loading…
Reference in New Issue
Block a user