Skip to content
This repository has been archived by the owner on Oct 1, 2020. It is now read-only.

Commit

Permalink
fix send email bug
Browse files Browse the repository at this point in the history
  • Loading branch information
monty5811 committed Mar 27, 2016
1 parent e20346d commit 5256db3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ansible/env_vars/base.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---

git_repo: https://github.com/monty5811/apostello.git
git_version: v1.4.1
git_version: v1.4.2

project_name: apostello
application_name: apostello
Expand Down
2 changes: 1 addition & 1 deletion apostello/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ def update_msgs_name(person_pk):
@task()
def send_async_mail(subject, body, to):
"""Send email."""
from_ = settings.FROM_EMAIL
from_ = settings.EMAIL_FROM
send_mail(subject, body, from_, to)


Expand Down

0 comments on commit 5256db3

Please sign in to comment.