if the dutch.php file contains this:
Code:
DEFINE('_UE_NEWPASS_SUB','New password for: %s');
DEFINE('_UE_NEWPASS_MSG','The user account %s has this email associated with it.\n'
.'A web user from %s has just requested that a new password be sent.\n\n'
.'Your New Password is: %s\n\n'
.'If you didn\'t ask for this, don\'t worry.'
.' You are seeing this message, not them. If this was an error just log in with your'
.' new password and then change your password to what you would like it to be.');
The password is sent along with the email.
I translated it into Dutch:
Code:
DEFINE('_UE_NEWPASS_SUB','Nieuw wachtwoord');
DEFINE('_UE_NEWPASS_MSG','Deze email bevat een nieuw wachtwoord voor de4eMusketier.nl.\n'
.'U heeft op onze website aangegeven een nieuw wachtwoord te willen krijgen.\n\n'
.'Uw nieuwe wachtwoord is: %s\n\n'
.'Indien u hier niet om heeft gevraagd hoeft u zich geen zorgen te maken.'
.'Alleen u ziet deze email. Gebruik dit wachtwoord en uw emailadres om in te loggen op uw account.'
.'Na inloggen kun u het wachtwoord wijzigen in uw zelf gekozen wachtwoord.');
And with this the password is not sent.
What I'm doing wrong?