However, the "send" option when activated, appears to override my "send from" email address to be the users email they entered in the guestbook. When this happens I get the PHPMAILER_RECIPIENTS_FAILED error.
I have found a number of references to Joomla issues with problem, and I was able to modify the line 570 by adding and override:
Code: Select all
$mailfrom = $mainframe->getCfg('mailfrom'); // ADDED TO FORCE SMTP FROM TO BE MY SITE
JUtility::sendMail($mailfrom, $fromname, $email, $subject, $message);
Thanks