Hello guys . i'm currently working on a project which deal with many things link sending confirmation messages to members . well the server that i'm using i guess doesn't support Mail(); function . i tried to use it many time but nothing happened ,, it shows that "message has been sent" but i login my email there is no new email (even junk ) i'm using hotmail . any ideas ? Thanks .
Have you tried a inbox that accepts spam? If you have no spf records or bad headers bad from address formatting, sometimes those emails won't even show up in hotmail.
ok ill try it and ill tell you the result .. well i did .. on a bad server .. old one and no security on it ..
Parse error: syntax error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /home/XXX/public_html/XXX/class.phpmailer.php on line 44
Could you paste the code to use? Sounds like there's regular text after a ; somewhere on line 44 and it's expecting a $var, function, or end of the class (which would be })
You could try Universal Email. Not free, but it's pretty sweet for sending email to multiple recipients from a recordset.
ppl will be able to help if you post line 44 of /home/XXX/public_html/XXX/class.phpmailer.php and some of the surroundings too.
Connect to outside smtp server and send mails through it, It`s always best spam free and fast method, Don`t use readymade scripts
Sorry i didn't know that you guys have replyed .. Well don't care about the error message .. it has been fixed but the messages does not arrive in HOTMAIL but ther arrive to GMAIL in the inbox ! . any ideas ?
i'm using this .. $eol="\n"; $headers = "From: ".$fromname."<".$fromaddress.">".$eol; $headers .= "Reply-To: ".$fromname."<".$fromaddress.">".$eol; $headers .= "Return-Path: ".$fromname."<".$fromaddress.">".$eol; $headers .= "Message-ID: <".time()."-".$fromaddress.">".$eol; $headers .= "X-Mailer: PHP v".phpversion().$eol; $headers .= 'MIME-Version: 1.0'.$eol; $headers .= "Content-type: text/html; charset=iso-8859-1".$eol.$eol; PHP: