mirror of
				https://github.com/Mibew/java.git
				synced 2025-10-31 18:41:09 +03:00 
			
		
		
		
	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);
 | |
| 	?>
 |