Topic: email function not working

Can anyone help a newbie with the email function? it won't work, I've tried PHP's mail function setting in config.php and SMTP setting. With SMTP I get errors and with PHP mail fuction enabled, no errors but also no emails received. I guess I'm missing something.

Re: email function not working

I finally, after working with it all day I discovered that there is an error in the code on the ps_mail.inc file,  it should read:

else {
            // Use the PHP mail command
            mail($to, $subject, $message, $headers);

After making this change, the mail function works perfectly.