I have created a script that sends email automatically! My mail message is included in the following variable
$message
But when i include a h
You could do something like:
$headers = "MIME-Version: 1.0\r\n"; $headers .= "Content-type: text/html; charset=iso-8859-1\r\n"; $subject = "Subject here"; $message = "email message here"; $sendMail = mail("info@domain.com", "$subject", "$message", "$headers" );