Browse Source

additional survey mails to an intern adress added

master
Benni Baermann 3 years ago
parent
commit
b289df8dd3
2 changed files with 3 additions and 2 deletions
  1. +2
    -2
      input/management/commands/sendmails.py
  2. +1
    -0
      input/settings.py

+ 2
- 2
input/management/commands/sendmails.py View File

@ -8,7 +8,7 @@ from django.conf import settings
from input.models import Project, Library, HonoraryCertificate, Travel, Email,\
BusinessCard, List, IFG, Literature
from input.settings import IF_EMAIL, SURVEYPREFIX
from input.settings import IF_EMAIL, SURVEYPREFIX, SURVEY_EMAIL
class Command(BaseCommand):
''' mails will be send here:
@ -39,7 +39,7 @@ class Command(BaseCommand):
send_mail('Dein Feedback zur Förderung durch Wikimedia Deutschland',
mail_template.render(context),
IF_EMAIL,
[email],
[email, SURVEY_EMAIL],
fail_silently=False)
except BadHeaderError:
return HttpResponse('Invalid header found.')

+ 1
- 0
input/settings.py View File

@ -1,5 +1,6 @@
# mail for IF-OTRS
IF_EMAIL = 'community@wikimedia.de'
SURVEY_EMAIL = 'christof.pins@wikimedia.de'
# prefix for urls
SURVEYPREFIX = 'https://wikimedia.sslsurvey.de/Foerderbarometer/?'

Loading…
Cancel
Save