mirror of
https://github.com/Mibew/i18n.git
synced 2025-02-02 17:44:42 +03:00
c5f4467b9d
git-svn-id: https://webim.svn.sourceforge.net/svnroot/webim/trunk@564 c66351dc-e62f-0410-b875-e3a5c0b9693f
12 lines
378 B
PHP
12 lines
378 B
PHP
<?php
|
|
|
|
$to = $_POST['email'];
|
|
$subj = "Forgotten Password Retrival";
|
|
$password = $_POST['password'];
|
|
$username= $_POST['username'];
|
|
$message = "This message has been sent to you because a form was filled out saying you've forgotten your password.
|
|
Your username:$username
|
|
Your new password:$password
|
|
click here to confirm the changes."
|
|
Mail($to, $subj, $message);
|
|
?>
|