This is a discussion on RE: [PHP] Cannot send a hyperlink within the PHP General forums, part of the PHP Programming Forums category; Brad wrote: > Why is php refusing to parse as html? Here your code cut down to what you need: $...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
Brad wrote:
> Why is php refusing to parse as html? Here your code cut down to what you need: $headers = "From: \"".$fromname."\" <".$fromaddress.">".$eol; $headers .= "X-Mailer: PHP ".phpversion().$eol; $headers .= "MIME-Version: 1.0\r\n"; $headers .= "Content-Type: text/html; charset=\"iso-8859-1\"\r\n"; $headers .= "Content-Transfer-Encoding: 8bit".$eol; $body = "<a href=\"http://www.zoneofsuccessclub.com\">link </a>\n"; mail($email, $subject, $body, $headers); /Per Jessen, Zürich |