No matter what I have tried, the phpFormGenerator will not email me with new records. I have checked the processor file and my email address is in there. The processor file is 777 permissions. I have even tried an alternate email address. But it won't email me. Any ideas as to why it won't work? My service provider does have PHP turned on.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Create a simple email function like this and have your provider explain why it does not work.
<?php
echo "About to send email!";
mail("youremail@yoururl.com","Testing Email Function","Hello World!");
echo "Email sent.";
?>
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
No matter what I have tried, the phpFormGenerator will not email me with new records. I have checked the processor file and my email address is in there. The processor file is 777 permissions. I have even tried an alternate email address. But it won't email me. Any ideas as to why it won't work? My service provider does have PHP turned on.
Create a simple email function like this and have your provider explain why it does not work.
<?php
echo "About to send email!";
mail("youremail@yoururl.com","Testing Email Function","Hello World!");
echo "Email sent.";
?>