When a customer requests to get an email of their password from the password recovery; how do I get just the password to show up in the email.
Currently I get the username and password to show up in the email. How do I hid the username from displaying in the email?
On the email it displays like this:
Your password information.
Password: david harris15
Code:
Code:
{config_load file="$skin_config"}
{$lng.eml_password_recovery_msg}
Password:
{if $accounts}
{section name=acc_num loop=$accounts}
{$accounts[acc_num].password}
{/section}
{else}
no data was found
{/if}