mirror of
https://github.com/myvesta/vesta
synced 2025-07-16 10:03:23 -07:00
password reset function
This commit is contained in:
parent
5b7e5ecbfc
commit
a6c992c258
7 changed files with 567 additions and 3 deletions
|
@ -97,4 +97,21 @@ function get_percentage($used,$total) {
|
|||
return $percent;
|
||||
}
|
||||
|
||||
function send_email($to,$subject,$mailtext,$from) {
|
||||
$charset = "utf-8";
|
||||
$to = '<'.$to.'>';
|
||||
$boundary='--' . md5( uniqid("myboundary") );
|
||||
$priorities = array( '1 (Highest)', '2 (High)', '3 (Normal)', '4 (Low)', '5 (Lowest)' );
|
||||
$priority = $priorities[2];
|
||||
$ctencoding = "8bit";
|
||||
$sep = chr(13) . chr(10);
|
||||
$disposition = "inline";
|
||||
$subject = "=?$charset?B?".base64_encode($subject)."?=";
|
||||
$header.="From: $from \nX-Priority: $priority\nCC: $cc\n";
|
||||
$header.="Mime-Version: 1.0\nContent-Type: text/plain; charset=$charset \n";
|
||||
$header.="Content-Transfer-Encoding: $ctencoding\nX-Mailer: Php/libMailv1.3\n";
|
||||
$message .= $mailtext;
|
||||
mail($to, $subject, $message, $header);
|
||||
}
|
||||
|
||||
?>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue