$to = \"$email\"; $subject = \"Thank You\"; $message = \"Thanks for applying\"; $from = \"solomon@kornar.com\"; $headers = \"From: $from\"; mail($to,$
Thanks for applying
You need to send the Content-type header as text/html.
Content-type
text/html
For example, change the $headers line to
$headers
$headers = "From: $from"; $headers .= "\nContent-type: text/html";
You need to set your headers content type. Like:
$headers.= 'Content-type: text/html; charset=UTF-8' . "\r\n";