Thanks for that info.
My host has cron jobs set up.
I cant get it working though.
I've created a cron.tab file and set it up to run a test email
I'm not recieving it.
cron.tab:
0-59/5 * * * * /files/home1/asacarter/marketplace/test.php
test.php
<?
$email = "asa_carter@hotmail.com";
$body = "Testing the email\n\n";
$body .= "Cron works ok.\n\n";
$from = "support@cartermediadesign.co.uk";
$mailheader = "From: $from\r\n";
mail("$email", "Cron Test", "$body", "$mailheader");
?>
Any idea's? The path is correct.