aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/web/emails.py11
1 files changed, 2 insertions, 9 deletions
diff --git a/src/web/emails.py b/src/web/emails.py
index 7be65995..9967fefb 100644
--- a/src/web/emails.py
+++ b/src/web/emails.py
@@ -49,16 +49,9 @@ def send(*args, **kwargs):
or a SMTP server.
"""
if conf.ON_HEROKU:
- send_postmark(to=kwargs.get("to"),
- bcc=kwargs.get("bcc"),
- subject=kwargs.get("subject"),
- plaintext=kwargs.get("plaintext"))
+ send_postmark(**kwargs)
else:
- send_smtp(to=kwargs.get("to"),
- bcc=kwargs.get("bcc"),
- subject=kwargs.get("subject"),
- plaintext=kwargs.get("plaintext"),
- html=kwargs.get("html"))
+ send_smtp(**kwargs)
def send_smtp(to="", bcc="", subject="", plaintext="", html=""):
"""
bgstack15