mirror of
https://github.com/Mibew/i18n.git
synced 2025-02-02 17:44:42 +03:00
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);
|
||
|
?>
|