PDA

View Full Version : Directions - Receive emails when tickets submitted


froggyliver
12-17-2008, 12:14 PM
I am just trying to find like a How-To for what settings needs to be made so that when tickets are submitted I get an email notification.

froggyliver
01-15-2009, 09:20 PM
I have tried following what other threads say but still do not get any email notification. Please someone help. Thank you. :confused:

jpowers40828
01-21-2009, 12:44 PM
Have you tried a simple mail script to make sure that the php mail() function is working?

test.php
<?php
if(mail("recipient@abc.com","subject","body","From: from@abc.com"))
echo "email sent";
else
echo "email failed";
?>

Upload it to your server and open up the file through a browser. What happens?