1 # -*- coding: utf-8 -*-
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.
6 from constance import config
7 from django.core.mail import send_mail
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)