
Graham Griffiths - 2005-04-14 13:35:12
I wonder if you could explain why you use underscores to prefix some variables and some functions.
I only noticed these underscores when I had to change the line,
mail($recipients,$this->subject,$message,$this->headers);
in class.MailManPlus_v1.1.php to,
mail($recipients,$this->subject,$message,$this->_headers);
to avoid getting an error.
Regards