I have a PHP Script to send an email using PHP mail.
$mail->AltBody = 'To view the message, please use an HTML compatible email viewer!'; // optional - MsgHTML will create an alternate automatically
$mail->MsgHTML("
<body>
<img src=`hulaminlogo.jpg`>
<br>
<h3>Load Number $loadnumber has been revoked by LOC.</h3><br>
</body>
");
$mail->Send();
The MsgHTML, works correctly however the <img src="hulaminlogo.jpg"> does not display. I have tried with '' as well. " does not work as it ends the value MsgHTML.
How can I correctly format this syntax so the image displays correctly?