How do I properly put images in emails using PHPMailer?
I have this code:
$mail->IsHTML(true);
$mail->Body = "Issue:<br/>".$issue."<br/><img src=$img_data/>";
But when I send it to gmail it already looks like this:
I'm using URI's to store the image data. How do I link this image in PHPMailer?