Hello,
My Php program is supposed to send an HTML email to some user client. I tried to do it using mail() function however, the HTML code appears as the content of the email!
Mailing part of my code:
$contents = '<b>Hello!!!</b>';
$subject = 'test!';
$email = 'email@email.com';
mail($email, $subject, $contents);
Can anyone help me with sending HTML emails with a Php program? :queasy: