My hosting company changed server security setting which stopped accessuserclass from using the usual php mail() function. The security change was implemented, I believe, using
PHPSuExec. This is all new to me as I always just used the php mail function but my research is showing that PHPSuExec is being phased in quite alot on shared servers.
If I am following your script correctly, all emails sent use the function send_mail() correct? And isn't it the line 968 below that is the one actually sending the mail?
if (mail($mail_address, $subject, $body, $header))
How can I change that to send using smtp instead of the php mail function?
Thanks