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.
This commit is contained in:
Russell Ballestrini 2025-10-03 16:44:46 -04:00
parent 59963a62cd
commit 125d8726bb

View file

@ -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."