Skip to content

Commit

Permalink
fixing issue #261 Confirmation email after resolution: wrong text and…
Browse files Browse the repository at this point in the history
… email
  • Loading branch information
luissian committed Apr 18, 2024
1 parent 1b59ec8 commit 333aa23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drylab/utils/resolutions.py
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ def send_resolution_creation_email(email_data):
subject_tmp = drylab.config.SUBJECT_RESOLUTION_QUEUED.copy()
subject_tmp.insert(1, email_data["service_number"])
subject = " ".join(subject_tmp)
if email_data["status"] == "Accepted":
if email_data["status"] == "accepted":
date = email_data["date"].strftime("%d %B, %Y")
body_preparation = list(
map(
Expand Down

0 comments on commit 333aa23

Please sign in to comment.