Просмотр файла banners.ru/www/data/mail.php

Размер файла: 1.03Kb
<?
function send_mail($email,$subject, $text,$admin_email,$site_title,$http_address)
{
$headers  = "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/html; charset=windows-1251\r\n";
$headers .= "From: <$admin_email>\r\n";
$telo ="
                        <html>
                        <body bgcolor=white>
                        <center>
                        
                                <tr>
                                        <td>
                                        $text
                                        <bR><br><br>
                                        <font face=arial size=2><b>Администрация $site_title</b>
                                        <br>$admin_email<br>
                                        $http_address
                                        </font>
                                        </td>
                                </tr>

                        </center>
                        </body>
                        </html>
";
@mail("$email", "$subject", "$telo", "$headers");

}
?>