
Originally Posted by
LordPsyan
I have orca working. I cannot seem to get sendmail to function at all. my emails are not being sent
Quick look at the code, if you are referring to the activation emails, shows this function being carried out in BxMail.php
BxMail.php is sort of funny actually... the message is hard coded into the php... I guess language localization is out the windows with Orca?
Anyways....
Code:
$headers = "From:" . $gConf['email']['sender'] . "\r\nContent-type: text/html";
return mail ($p['email'], $subj, $mailContent, $this->additionalHeaders, '-f'.$gConf['email']['sender']);
sends this mail - no cron used.... just the php mail() function.
This would be the place to start checking.... make sure the resulting value for $headers is valid for your mail server.
Do any messages end up in your server queue at all?
Smoge
Bookmarks