I have a table that stores variables for an image. if i want to display the image, of course i use:
<IMG SRC="do_display_image.php?cert_color=<?=$cert_color?>&text_color=<?=$text_color?>">
Now how do i send this image using the mail function. I tried:
$msg = "<IMG SRC=\"do_display_image.php?cert_color=<?=$cert_color?>&text_color=<?=$text_color?>\">";
mail("$to", "$subject","$msg");
It mails it but the image doesnt display, all that text does. How can i accomplish this? Thanks for any help