how to send mail in html code example
Example 1: html send email
<!-- Code by Scratchy -->
<!-- Twitter: @S_cratchy-->
<a href="mailto:[email protected]"<button>E-Mail me</a>
Example 2: email header html
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
$headers .= 'To:' . "\r\n";
$headers .= 'From: Admin<[email protected]>' . "\r\n";
mail($to, $subject, $message, $headers);
Example 3: html send email
<a href="mailto:[email protected]"<button>E-Mail me</a>