Hello, all.

I am trying to modify the text in the email sent after a user has clicked the forgotten password link. The text is defined in the catalog/includes/languages/english/password_forgotten.php file and the output is edited in the catalog/password_forgotten.php file. I've got both of those pulled up and have been messing around with them for hours.
In my former file I added this line...

define('EMAIL_PASSWORD_THANKS', ' Modified text is here.');

and I've attempted to edit line 34 in the latter file which previously read this:

tep_mail($check_customer['customers_firstname'] . ' ' . $check_customer['customers_lastname'], $email_address, EMAIL_PASSWORD_REMINDER_SUBJECT, sprintf(EMAIL_PASSWORD_REMINDER_BODY, $new_password), STORE_OWNER, STORE_OWNER_EMAIL_ADDRESS);

to now read:

tep_mail($check_customer['customers_firstname'] . ' ' . $check_customer['customers_lastname'], $email_address, EMAIL_PASSWORD_REMINDER_SUBJECT, sprintf(EMAIL_PASSWORD_REMINDER_BODY, $new_password, EMAIL_PASSWORD_THANKS), STORE_OWNER, STORE_OWNER_EMAIL_ADDRESS);

so that the user will get the following message in their email:

Text from email_password_reminder_body

PASSWORD HERE

Modified text here from email_password_thanks

However, nothing is showing up past the password. The modified text does not appear. Any ideas?