I'm trying to send HTML mail, with PHPMailer, with images. The body is loaded from a html file, that contains all the info.
When sending the mail, the image does not appear in the body, although I even send the image also as an attachment.
HTML <img> tag points to the same place as the place.
PHP:
$mail->AddAttachment('img/2u_cs_mini.jpg');
How can I make the html point to the attachment so the image can be loaded in the body.