ERRNO: 8192 when trying to send mail
Posted
by chupinette
on Stack Overflow
See other posts from Stack Overflow
or by chupinette
Published on 2010-04-10T08:00:55Z
Indexed on
2010/04/10
8:03 UTC
Read the original article
Hit count: 711
I have the following code which works when i put it in any blank php page,but when i tyr to put the code in another php page where i already has some codes in it, i get the error: ERRNO: 8192 TEXT: Assigning the return value of new by reference is deprecated LOCATION: C:\xampp\php\PEAR\Mail.php, line 154,
include('Mail.php');
$mail = Mail::factory("mail");
$headers = array("From"=>"[email protected]", "Subject"=>"Your order has been placed ");
$body = "lol";
$mail->send("[email protected]", $headers, $body);
© Stack Overflow or respective owner