Add HTML formatting in phpmailer

In PHP mailer, you need to set below

$mail->IsHTML(true);

Note: $mail means your PHPMailer object.

Reference Link: PHPMailer

Leave a Comment