OK... so I have my common.php, which I include in every file of my application. In it there is a class to send email; in the sending function, it has this line:
mail($this->recipients_str, $this->subject, $this->message, $this->header_str);
Anyway, when I run the object code, it gives me this error:
Warning: Server Error in C:\Inetpub\wwwroot\FanFiction\Live\01\ebb\common.php on line 343
(line 343 is the line with the mail() functino on it)
What could be going on here? I set the header, etc through the object code before it, and when I print out all the variables it seems to be all in order. However, I get this error. ?😐
--Jason