Skip to content

Commit

Permalink
Merge pull request #907 from DalgoT4D/906-plan-expiration-email-shoul…
Browse files Browse the repository at this point in the history
…d-contain-name-of-org

put name of org into expiration message
  • Loading branch information
fatchat authored Dec 2, 2024
2 parents d37fcb4 + 0adbc54 commit f554217
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ddpui/celeryworkers/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -982,7 +982,7 @@ def check_org_plan_expiry_notify_people():
org=org,
new_role__slug__in=roles_to_notify,
)
message = f"""This email is to let you know that your Dalgo plan is about to expire. Please renew it to continue using the services."""
message = f"""This email is to let you know that your Dalgo plan for {org.name} is about to expire. Please renew it to continue using the services."""
subject = "Dalgo plan expiry"
for orguser in org_users:
send_text_message(orguser.user.email, subject, message)
Expand Down

0 comments on commit f554217

Please sign in to comment.