File: 0.02.30a/server/test/mail.sh (View as HTML)

  1: #!/usr/bin/php -q
  2: <?php
  3: $to="d@ve.purplepixie.org";
  4: $from="freenats@shark.purplepixie.org";
  5: $sub="test mail";
  6: $body="Hello,\r\n\r\nThis is a test.\r\n\r\nThanks.\r\n";
  7: $head="From: ".$from."\r\n";
  8: $ah="-f".$from;
  9: 
 10: mail($to,$sub,$from,$head,$ah);
 11: ?>
 12: