Skip to content Skip to sidebar Skip to footer

Php Email & Hyperlinks

I'm trying to include a hyperlink in my email but it is just showing as plain text. I'm probably just miss-using my quotes in the $BODY section and I'm just not seeing it. echo 'A

Solution 1:

You're using it wrong:

 mail($to, $subject, $body, $from, $headers)

The mail() function does not have a $from parameter. You ought to throw it into $headers as well.

Post a Comment for "Php Email & Hyperlinks"