<?phperror_reporting ( E_ALL ^ E_WARNING ^ E_NOTICE );header( "Content-Type: text/html; charset=windows-1251" );include './engine/classes/mail.php';$mail = new IRB_Mailer( 'test message' );$mail->createTo( '[email protected]' );$mail->createSubject( 'test' );$mail->createFrom( '[email protected]' );$mail->setHtml();$mail->sendMail();?>