Recent content by bamboohead

  1. B

    php mail

    Thank you. I wonder how the other folks got it to work when their code didn't have the carriage return character.
  2. B

    php mail

    I have tried below. Modifying only $contactemail . <?php $contactemail = "some_one@exa.com"; $headers = 'MIME-Version: 1.0' . "\n"; $headers .= 'Content-type: text/html; charset=iso-8859-1' . "\n"; $headers .= "Content-Transfer-Encoding: 7bit\n"; $headers .= 'From...
  3. B

    php mail

    Hi, I have not gotten my php mail to work. I have checked the spam folder and I have tried snippets of code found in this forum. I have also tried sending to yahoo and gmail. Does anybody know what else could be wrong? I'm using the free hosting. When I checked the return value of mail...
  4. B

    PHP mail()

    i'm not able to get mail working? Does anybody know if there is any settings I need to perform beforehand? And mail returns true. <?php // The message $message = "Line 1\nLine 2\nLine 3"; // In case any of our lines are larger than 70 characters, we should use wordwrap() $message =...
Top