|
@ -7,7 +7,7 @@ from django.core.mail import send_mail, BadHeaderError |
|
|
|
|
|
|
|
|
from input.models import Project, Library, HonoraryCertificate, Travel, Email,\ |
|
|
from input.models import Project, Library, HonoraryCertificate, Travel, Email,\ |
|
|
BusinessCard, List, IFG, Literature |
|
|
BusinessCard, List, IFG, Literature |
|
|
from input.settings import URLPREFIX, IF_EMAIL, SURVEYPREFIX |
|
|
|
|
|
|
|
|
from input.settings import IF_EMAIL, SURVEYPREFIX |
|
|
|
|
|
|
|
|
class Command(BaseCommand): |
|
|
class Command(BaseCommand): |
|
|
''' mails will be send here: |
|
|
''' mails will be send here: |
|
@ -54,7 +54,7 @@ class Command(BaseCommand): |
|
|
mail_template = get_template('input/if_end_of_project.txt') |
|
|
mail_template = get_template('input/if_end_of_project.txt') |
|
|
for project in old: |
|
|
for project in old: |
|
|
context = {'project': project} |
|
|
context = {'project': project} |
|
|
context['URLPREFIX'] = URLPREFIX |
|
|
|
|
|
|
|
|
context['URLPREFIX'] = settings.URLPREFIX |
|
|
try: |
|
|
try: |
|
|
send_mail('Projektende erreicht', |
|
|
send_mail('Projektende erreicht', |
|
|
mail_template.render(context), |
|
|
mail_template.render(context), |
|
|