Hi all,
I'm trying to write a PHP code that embeds a picture. The problem is that I cannot embed it, so I use it as follows, and then users cannot see the picture unless they approve the pictures.
Here is my code (I skip the database connection - it works fine):
Do you know how to embed it?
Thanks!
I'm trying to write a PHP code that embeds a picture. The problem is that I cannot embed it, so I use it as follows, and then users cannot see the picture unless they approve the pictures.
Here is my code (I skip the database connection - it works fine):
Code:
$msg = "<html><body><img src=\"[URL unfurl="true"]http://myweb.com/mail_banner.jpg\"><p>Hello[/URL] , <br><br> Thank you for your interest in our products. </p></body></html>";
mail("$email", "Downloading", "$msg","From: Mosh <mosh@email.com>\nReply-To: mosh@email.com\n" . "MIME-Version: 1.0\n" . "Content-type: text/html; charset=iso-8859-1");
Do you know how to embed it?
Thanks!