From afe7ebeb224767f350ef156f50a08771a5d60d37 Mon Sep 17 00:00:00 2001 From: Alex Cabal Date: Thu, 23 Jun 2022 09:33:46 -0500 Subject: [PATCH] Fix broken template in payment process script --- scripts/process-pending-payments | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/process-pending-payments b/scripts/process-pending-payments index c674d7fd..25422d77 100755 --- a/scripts/process-pending-payments +++ b/scripts/process-pending-payments @@ -204,8 +204,8 @@ try{ $em->From = EDITOR_IN_CHIEF_EMAIL_ADDRESS; $em->Subject = 'Thank you for supporting Standard Ebooks!'; $em->Body = Template::EmailDonationThankYou(); - $em->TextBody = Template::EmailDonationThankText(); - //$em->Send(); + $em->TextBody = Template::EmailDonationThankYouText(); + $em->Send(); } } }