Private
Public Access
1
0
This commit is contained in:
Sander Roosendaal
2021-11-09 19:14:00 +01:00
parent 96a4b2ba10
commit 919e7f331b
4 changed files with 48 additions and 1 deletions

View File

@@ -24,6 +24,7 @@ from rowers.tasks import (
handle_send_email_subscription_update,
handle_send_email_subscription_create,
handle_send_email_failed_cancel,
handle_send_email_transaction_notification,
)
import pandas as pd
@@ -219,6 +220,8 @@ def make_payment(rower,data):
try:
job = myqueue(queuehigh,handle_send_email_transaction,
name, rower.user.email, amount)
job = myqueue(queuehigh,handle_send_email_transation_notification,
name.rower.user.email, amount, additional_text)
except: # pragma: no cover
pass