Skip to content

Commit

Permalink
Bugfix: changed parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
Zerskk committed Nov 30, 2023
1 parent f33f41f commit b2eaeec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/tasks/email/send_mail.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,6 @@ def send_curator_mail(receiver: list, user: str, project_name: str, submission_u
mailer = Mailer(username=username, port=port, password=password,
smtp_server=smtp_server, sender=sender, receiver=receiver)

mailer.create_curator_mail(user=user, project_name=project_name, order_url=submission_url)
mailer.create_curator_mail(user=user, project_name=project_name, submission_url=submission_url)
print("\n\n\n sending mail \n\n\n")
mailer.send_mail()

0 comments on commit b2eaeec

Please sign in to comment.