backup_mail.php
388 Bytes
<?php
class Mail{
function str_rus($str){
return convert_cyr_string($str,"w","k");
}
function send($email,$email_to,$title = '',$msg = ''){
$headers="MIME-Version: 1.0\n";
$headers.="Content-type: text/xml; charset=\"koi8-r\"\n";
$headers.="From: $email_to<$title>\n";
return mail($email,$title,$msg,$headers);
}
}
?>