Jump to content

jorgepinho

New Members
  • Posts

    4
  • Joined

  • Last visited

Profile Information

  • Gender
    Not Telling

jorgepinho's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. I know that... But it doesnt span all the foruns at the same time...
  2. Hi, You need to learn PHP syntax also, here is an example I *copied* from that page: Change it to your needs $to = 'nobody@example.com'; $subject = 'the subject'; $message = 'hello'; $headers = 'From: webmaster@example.com' . PHP_EOL. $headers .= 'Reply-To: webmaster@example.com' . PHP_EOL . $headers .= 'X-Mailer: PHP/' . phpversion(); $headers .= 'Content-type: text/html; charset=utf-8' . PHP_EOL; mail($to, $subject, $message, $headers);
  3. Hi, First day here Like in other foruns, I would like to see a list with unreplied posts!
  4. Hi, You need to set the encoding in the 4th argument, and not in the PHP output: $headers = 'Content-type: text/html; charset=utf-8' . "\r\n"; Plz check the manual, you will find lots of examples: http://php.net/manual/en/function.mail.php
×
×
  • 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.