From 125d8726bb73330d9d00e6d934d6634a263fa0f5 Mon Sep 17 00:00:00 2001 From: Russell Ballestrini Date: Fri, 3 Oct 2025 16:44:46 -0400 Subject: [PATCH] Remove support contact message from economically unviable refund emails The message 'Please contact support if you have questions' has been removed since no support is offered for refunds. --- make_post_sell/lib/mail.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/make_post_sell/lib/mail.py b/make_post_sell/lib/mail.py index 61ac61c..6b8545e 100644 --- a/make_post_sell/lib/mail.py +++ b/make_post_sell/lib/mail.py @@ -392,7 +392,7 @@ def send_refund_email(request, to_email, crypto_payment, refund_details): # Check if it's economically unviable vs no refund address if crypto_payment.refund_reason and "economically unviable" in crypto_payment.refund_reason: subject = f"Payment Issue - Refund Too Small - {crypto_payment.coin_type}" - explanation = f"Your payment of {received_amount} {crypto_payment.coin_type} results in a refund amount too small to cover network transaction fees. The refund would cost more to send than its value. Please contact support if you have questions." + explanation = f"Your payment of {received_amount} {crypto_payment.coin_type} results in a refund amount too small to cover network transaction fees. The refund would cost more to send than its value." else: subject = f"Payment Issue - No Refund Address - {crypto_payment.coin_type}" explanation = "We were unable to process a refund for your payment because no refund address was configured. Please contact support if you need assistance."