diff --git a/backend/clubs/views.py b/backend/clubs/views.py index ebff2910f..4cdfbfaaf 100644 --- a/backend/clubs/views.py +++ b/backend/clubs/views.py @@ -2068,9 +2068,7 @@ def perform_destroy(self, instance): "name": club.name, "reply_emails": settings.OSA_EMAILS + [settings.BRANDING_SITE_EMAIL], } - emails = ( - club.get_officer_emails() + [self.request.user.email] + settings.OSA_EMAILS - ) + emails = club.get_officer_emails() + [self.request.user.email] send_mail_helper( name="club_deletion", subject="Removal of {} from {}".format( @@ -2078,6 +2076,7 @@ def perform_destroy(self, instance): ), emails=emails, context=context, + reply_to=settings.OSA_EMAILS + [settings.BRANDING_SITE_EMAIL], ) @action(detail=False, methods=["GET"]) diff --git a/backend/templates/emails/approval_status.html b/backend/templates/emails/approval_status.html index 8c09e6adf..323343dee 100644 --- a/backend/templates/emails/approval_status.html +++ b/backend/templates/emails/approval_status.html @@ -35,7 +35,7 @@
You can view your club here and make further edits here. - If you have any feedback about the club renewal process, you can respond to this email. + If you have any feedback about the club renewal process, please respond to this email or contact the Office of Student Affairs.
Thank you for using Penn Clubs. @@ -48,8 +48,7 @@
{{ approved_comment }}
Please make the necessary edits to your club information and use the button here to resubmit for approval.
- If you have any questions or concerns, please contact - the Office of Student Affairs. + If you have any questions about the approval process, please feel free to respond to this email or contact the Office of Student Affairs.
- If you have any questions or concerns, please contact - the Office of Student Affairs. + If you have any questions or concerns, please + respond to this email or contact the Office of Student Affairs.
{% endblock %} \ No newline at end of file