I am trying to check the PHPmailer class for embedding an image (http://www.google.gr/intl/en_com/images/srpr/logo1w.png) in an email
I use this code (along with the standard one, 100% works, mail is delivered):
$mail->AddEmbeddedImage($src, 'test', basename($src));
and this put the email body:
<img src="cid:test">
Image is not displayed. What can i do wrong?
source share