Ok! I have it working now. I substituted
mail for
mosmail. This works for me because I don't have mail set up on my Apache server, so I use the Joomla settings which says to use my SMTP server. I changed line 599:
| Code: |
if(mail($row->email_to,$ctf_subject,$mail_body,$header)) $msg = _EA_CTF_MSUCCESS;
|
to:
| Code: |
if (mosMail( $ctf_mail, $ctf_name, $row->email_to, $ctf_subject, $mail_body )) $msg = _EA_CTF_MSUCCESS;
|
It's probably better anyway to use mosMail and keep it all in the family.