I have installed pear and when sending mail, I get the following error: Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 6144 bytes) in C:\wamp\www\GamesRus\mail.php on line 2
I am running on windows 7. Here is my code:
$mail = Mail::factory("mail");
$headers = array("From"=>"[email protected]", "Subject"=>"Test Mail");
$body = "This is a test!";
$mail->send("[email protected]", $headers, $body);
?>
I would really appreciate the help.