806d106ed85669078b295fe926383822d719cf3e
[redakcja.git] / redakcja / utlis.py
1 # -*- coding: utf-8 -*-
2 #
3 # This file is part of MIL/PEER, licensed under GNU Affero GPLv3 or later.
4 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
5 #
6 from constance import config
7 from django.core.mail import send_mail
8
9
10 def send_notify_email(subject, content):
11     addresses = [part.strip() for part in config.NOTIFY_EMAIL.split(';') if '@' in part]
12     send_mail(subject, content, 'milpeer@mdrn.pl', addresses)