Jump to content
MakeWebGames

rulerofzu

Members
  • Posts

    2,464
  • Joined

  • Last visited

  • Days Won

    8

Everything posted by rulerofzu

  1. Oh its ok them sending it....just not receiving it!!
  2. I have a sneaky feeling that he still will have issues getting through to hotmail though.
  3. *hides my slippers....
  4. Well the code is working ive tested what Ive provided to you on my server without any problem. Sent to gmail, hotmail, yahoo and other email accounts. So if its not sending to your hotmail account then something is up with your hotmail which could be spf or lookup from hotmail not able to be verified if you can look at mail queues on your server then it may give you more info.
  5. Your email didnt come through. My email using the same code went to my hotmail. Are you using a valid email in the from? Also change your code to the following. $headers = "MIME-Version: 1.0\r\n"; $headers .= "Content-Type: text/html; charset=ISO-8859-1\r\n";   $headers .= 'From: '.$from.'';
  6. Yes they will. Try my hotmail [email protected]
  7. [ATTACH=CONFIG]705[/ATTACH] Got the image through this time not shown on the print screen as I disable remote content by default in my email client.
  8. I deleted it earlier. Send one to yourself or send me another.
  9. Other than your broken image works fine.
  10. Tested from my server to a gmail account all working correctly. Ill check back tomorrow to see if you have any further probs.
  11. $to=filter_var($_POST['email'], FILTER_VALIDATE_EMAIL); $code=mt_rand(1000000000,900000000); $subject = 'Email Activator'; $from='[email protected]'; $headers = 'From: '.$from.''; $headers .= "MIME-Version: 1.0\r\n"; $headers .= "Content-Type: text/html; charset=ISO-8859-1\r\n"; $message ='<html>'; $message = ' <body bgcolor="#999999" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"> <center> <table width="600" cellpadding="0" cellspacing="0" border="0"> <tr> <td colspan="5" align="left" bgcolor="#999999" style="font-size: 10px;"> Learn more about the latest specials for Criminals Nightmare.</td> <td colspan="3" align="right" bgcolor="#999999" style="font-size: 10px;"></td> </tr> <tr> <td colspan="8"><img src="http://criminals-nightmare.com/mesi/topimage.jpg" width="600" height="135" alt="Criminals Nightmare" style="display: block;" /></td> </tr> <tr> <td bgcolor="#999999" color="#232323" style="margin: 3px;"> <center> <a href="_blank" href="http://www.criminals-nightmare.com/login.php" style="color: #373737;"><strong><h3>LOGIN HERE</h3></strong></a> __________________________________________________ ___________________________________ Your code to activate your account is: <strong>'.$code.'</strong> Enter this code inside the game on Account Setup. __________________________________________________ ___________________________________ </center> </td> </tr> </table> </center> </body> </html>'; mail($to, $subject, $message, $headers); echo "sent";
  12. Hmmm well its working for me to a gmail account. Post your code now so i can compare to what I am using.
  13. Remove <head><title></head> just use <html><body....
  14. Sorry my bad. $headers .= "Content-Type: text/html; charset=ISO-8859-1\r\n";
  15. Also your mime is incorrect $headers='Mime-Version: 1.0\r\n';
  16. Try changing the headers $headers .= 'Content-Type: text/html; charset=utf-8\r\n';
  17. Nope still the same. Whats your code now?
  18. Ah yeah your next email is not correct. Its not being parsed as html instead your getting code   <html> <head> <title>Criminals Nightmare Account Activation</title> </head> <body bgcolor="#999999" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"> <center> <table width="600" cellpadding="0" cellspacing="0" border="0"> <tr> <td colspan="5" align="left" bgcolor="#999999" style="font-size: 10px;"> Learn more about the latest specials for Criminals Nightmare.</td> <td colspan="3" align="right" bgcolor="#999999" style="font-size: 10px;"></td> </tr> <tr>
  19. Received. So if your not getting that to a hotmail account then its a hotmail issue probably look at white list / spf I believe hotmail/microsoft still do a register to avoid mail getting junked or not getting there at all.
  20. ok so try that test again but now use my email [email protected] Ill let you know if i get it.
  21. What is the following PHP Version OS windows or *nix Look at the sendmail path in the core. Also try the following if ( function_exists( 'mail' ) ) { echo 'mail() is available'; } else { echo 'mail() has been disabled'; }
  22. So go back to basics and see if it is something wrong on your server Create a test.php page put in your hotmail in the $to   <?php $to = "[email protected]"; $subject = "Test mail"; $message = "Hello! This is a simple email message."; $from = "[email protected]"; $headers = "From:" . $from; mail($to,$subject,$message,$headers); echo "Mail Sent."; ?>   I would also check with a phpinfo file that mail is actually enabled
  23. My mail server wont send to an address that doesnt look up first. So a fake or incorrect email address wont lookup and thus email will not be sent. As that is how I setup the server. So on my server an email address most certainly needs to exist.
  24. Oh yeah so it is didnt look at the date oops. Still nice to have a discussion a little further on it Personally I use malware bytes real time protection, spybot and microsoft essentials.
  25. Explain coding the game. As far as I can see you have uploaded the scripts you got nothing more. Site is vunerable. Same reason as above. Why has nobody got free cash etc. Cant be bothered. My advice would be to stop now. Close registrations. Fix it YOURSELF or pay someone to fix it. Add new content and things to do to make it different. Make a good template or pay someone to do one.
×
×
  • Create New...