Send email PHP UTF-8

The following code can see the headers to send an email with UTF-8 characters and HTML content.

$headers = "MIME-Version: 1.0\r\n";
$headers.= "Content-Type: text/html;charset=utf-8\r\n";

Leave a Reply