Quick tip -- locate and whereis are your friends in the shell. They make finding executables like php are a snap.
As for emailing from php/cron, it depends on how your system is set up. Many email servers bounce any emails they receive from IPs that they can't reverse map or otherwise identify. If your machine is on a LAN for instance, the emails will probably get bounced. Another thing to check is that your user account can actually use your system's SMTP service. Email sent with php's mail() function are usually sent by the owner of the script (or the web server's user). J Mehmet Kamil Erisen wrote: > hi, > thanks for the tip. I was wondering about it too.... > I do not have access to everywhere on the server. > I tried /usr/bin/php and it worked...... :) > > I tested the following script for connection to database, > executing my functions etc... > everything seems to work but mail. > any ideas? > > Thanks for the help. > erisen > > btw: at last, I added the die to my mail command, and fair > enough, I got the Can not send this as output. > > So, now the question is, how can I send mail with php / > cron config. > > please note that the script worked fine on the browser. > thx. > > code: > #!/usr/bin/php -q > > > <?php > > include ("application.php"); > > $subject="Cron Job has run"; > $body="test.php is running now"; > $sendtome = "[EMAIL PROTECTED]"; > mail("[EMAIL PROTECTED]", $subject, $body,$sendtome) > or die ('Can not send this'); > echo $sendtome; > echo "hello world"; > > echo turk_now() ; > > $array = get_user_stat($CONF) ; > while (list($key,$value)=each($array)) { > echo "$key $value<BR>"; > } > > > ?> > > -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]