Can someone help with my automatic mail script?
I have a mail script that is set up to email me every 5 refreshes if the webcam freezes on my site.
These are in 45 second intervals so that is why the 225 is there.
It works but the problem is that it emails me right when someone logs on. Can you help with this? Here is my script.
<?php
$file="test.jpg";
clearstatcache();
$time=filemtime($file);
$CurTime=time();
$dif=$CurTime - $time;
if ($dif > 225)
{
mail("Webmaster <webmaster@matsukidesignsolutions.com>","The webcam is frozen","");
}
echo"document.write()";
?>
Thanks you.