Jump to content

scott.russell

Members
  • Posts

    15
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

scott.russell's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. I have been working on this all morning and no matter how hard I try this script wont send emails to hotmail.  Tell me what I should do to get it working. [code] $message = "HI"; $subject = "Scores Posted"; $to = $userinfo[3];  //Pulls email out of database $headers  = "MIME-Version: 1.0\r\n".   "Content-type: text/html; charset=iso-8859-1\r\n".   "From: \"Scores\" <squall8046@hotmail.com>\r\n".   "Content-Transfer-Encoding: 8bit\r\n\r\n"; $headers .= 'X-Mailer: PHP/' . phpversion(); //sends current scores by email to all players in the db mail($to, $subject, $message, $headers); [/code]
  2. It works now.  Thanks a lot for all your help.
  3. It is in the inbox and still isnt rendering. 
  4. <html> <body bgcolor='#ece9d8'> <p>Test</p></body> </html> Yes but it did'nt render the HTML
  5. Warning: mail(): SMTP server response: 553 5.0.0 Unbalanced I got this error when I tried it.
  6. [code] $message = " <html>   <body bgcolor='#ece9d8'> <p>Test</p>   </body> </html>";   $headers  = "MIME-Version: 1.0\r\n"; $headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n"; $headers .= 'From: CHWMFL <example@example.com>' . "\r\n"; $fifth_p = '-f example@example.com'; $subject = "CHWMFL Scores Posted"; $to = 'squall8046@hotmail.com'; mail($to, $subject, $message, $headers, $fifth_p); [/code]
  7. $headers  = "MIME-Version: 1.0\r\n"; $headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n"; $headers .= 'From: CHWMFL <example@example.com>' . "\r\n"; $fifth_p = '-f example@example.com'; This is what I currently have and it is still not sending to the hotmail account.  It sends it to every other one but not to hotmail.
  8. I took out the x - headers and yes im using a real email address and it still isnt working.
  9. These are the headers I have. $headers  = "MIME-Version: 1.0\r\n"; $headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n"; $headers .= 'From: CHWMFL <example@example.com>' . "\r\n"; $headers .= "X-Priority: 1\n"; $headers .= "X-MSMail-Priority: High\n"; $headers .= "X-Mailer: My mailer"; It still isnt working.
  10. It's not in there Spam boxes there not getting them at all.
  11. I am trying to send an HTML email through the php mail function and all of the addresses get the mail except hotmail.  Does anyone know a way to get this to work.  Thanks.
  12. I am having trouble getting getting a message to pop up while a page is posting to another page. I disabled the submit button when they click it and I need a message to pop up on the page that says Processing or something. Does anyone know a way to do this.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.