Commit 566ca7a77d5f34d8eeed0c143f69a4341945205a
1 parent
fb3c3bb3
Exists in
master
and in
39 other branches
Fixing send_mail not defined
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
src/super_archives/utils/email.py
| @@ -31,4 +31,4 @@ def send_email_lists(user, mailing_lists): | @@ -31,4 +31,4 @@ def send_email_lists(user, mailing_lists): | ||
| 31 | subscribe_addr = list_name + '-subscribe@listas.interlegis.gov.br' | 31 | subscribe_addr = list_name + '-subscribe@listas.interlegis.gov.br' |
| 32 | to.append(subscribe_addr) | 32 | to.append(subscribe_addr) |
| 33 | 33 | ||
| 34 | - send_mail(subject, '', from_, to) | 34 | + mail.send_mail(subject, '', from_, to) |