I'm pretty sure this problem isn't with my host but I can't seem to send any emails via form submission. I have always used Joomla (1.5.20) with the phpmailer option in the global configuration and Chronoforms (3.1 RC 5.5) without any problems. I just noticed that I'm getting the follow error message "Could not Instantiate mail function" To ensure that mail was working I did a test by sending an email using sendmail "sendmail -s "Test" [email]me@gmail.com[/email]". I also wrote a simple php script that would use the mail function (see below). Both worked.
Why would I be getting this message via Joomla & Chronoforms??
Why would I be getting this message via Joomla & Chronoforms??
<?php
// The message
$message = "Hello,\nThis is a test\nHope you got it";
$message = wordwrap($message, 70);
// Send
mail('me@gmail.com', 'Testing', $message);
?>