9951 explained code solutions for 126 technologies


phpmailerHow do I use PHPMailer to send an HTML email with UTF-8 encoding?


Using PHPMailer to send an HTML email with UTF-8 encoding requires the following steps:

  1. Include the PHPMailer library in your project:
require 'PHPMailer/src/PHPMailer.php';
  1. Create a new PHPMailer instance:
$mail = new PHPMailer;
  1. Set the character encoding to UTF-8:
$mail->CharSet = 'UTF-8';
  1. Set the HTML content type:
$mail->isHTML(true);
  1. Set the body of the email to the HTML content:
$mail->Body = '<h1>Hello World!</h1>';
  1. Finally, send the email:
$mail->send();
  1. Check for errors:
if ($mail->ErrorInfo) {
    echo 'Error: ' . $mail->ErrorInfo;
} else {
    echo 'Message sent!';
}

Output: Message sent!

For more information, please refer to PHPMailer's official documentation.

Edit this code on GitHub