<?php
// A test script to send an email message to myself.
// author = Martin Bush, South Bank University
// date = 6th August 2002
// filename = send-email.php3
// version = 1.1
// history = -
$content_owner = "bushm@sbu.ac.uk";
$mail_message = "If I get this it worked!\n\nNow what?!";
mail($content_owner, "Expiry Checker: testing", $mail_message);
?>
|