30 lines
935 B
Python
30 lines
935 B
Python
import os.path
|
|
|
|
from lxml import etree
|
|
|
|
from django.core.management.base import BaseCommand
|
|
from django.conf import settings
|
|
from django.contrib.auth.models import User
|
|
|
|
import mitxmako.middleware as middleware
|
|
|
|
middleware.MakoMiddleware()
|
|
|
|
|
|
class Command(BaseCommand):
|
|
help = \
|
|
'''Sends an e-mail to all users. Takes a single
|
|
parameter -- name of e-mail template -- located
|
|
in templates/email. Adds a .txt for the message
|
|
body, and an _subject.txt for the subject. '''
|
|
|
|
def handle(self, *args, **options):
|
|
#text = open(args[0]).read()
|
|
#subject = open(args[1]).read()
|
|
users = User.objects.all()
|
|
text = middleware.lookup['main'].get_template('email/' + args[0] + ".txt").render()
|
|
subject = middleware.lookup['main'].get_template('email/' + args[0] + "_subject.txt").render().strip()
|
|
for user in users:
|
|
if user.is_active:
|
|
user.email_user(subject, text)
|