Просмотр файла protect/mail.php

Размер файла: 791B
  1. <?
  2.  
  3. class Email
  4. {
  5. var $EMAIL;
  6. var $HEADERS;
  7. var $ERROR;
  8. function Email($to,$subject,$content)
  9. {
  10. $HEADERS = "Content-Type: text/plain; charset=windows-1251\n";
  11. $HEADERS .= "From: mail_robot@".$_SERVER["SERVER_NAME"]."\n";
  12. $HEADERS .= "X-Sender: <mail_robot@".$_SERVER["SERVER_NAME"].">\n";
  13. $HEADERS .= "X-Mailer: PHP4\n";
  14. $HEADERS .= "X-Priority: 1\n";
  15. $HEADERS .= "Return-Path: <admin@".$_SERVER["SERVER_NAME"].">\n";
  16. $HEADERS .= "Content-Type: text/plain; charset=windows-1251\n\n";
  17. if (mail ($to,$subject,$content,$HEADERS))
  18. $this->ERROR = 0;
  19. else
  20. $this->ERROR = 1;
  21. }
  22. }
  23.  
  24. function PHPruSave($input,$file,$chmod='w+')
  25. {
  26. $fp = fopen($file,$chmod);
  27. flock($fp,2);
  28. fputs ($fp, $input);
  29. flock($fp,3);
  30. fclose($fp);
  31. }
  32.  
  33. ?>