Jump to content

[SOLVED] embedded images email


garydt

Recommended Posts

I'm trying to get embedded images into email. I've got-

$subject = "Message from $user (elvis-people)";

$headers = "From: $from\r\n" .
        'X-Mailer: PHP/' . phpversion() . "\r\n" .
        "MIME-Version: 1.0\r\n" .
        "Content-Type: text/html; charset=utf-8\r\n" .
        "Content-Transfer-Encoding: 8bit\r\n\r\n";

$body = "<HTML><BODY><CENTER>
<TABLE BORDER='1'><TR><TD align='center'><FONT COLOR='MAROON'><B><BIG>
Here is an image!</BIG></B></TD></TR>
<TR><TD align='center'><img src='logo.gif'></TD></TR>
</CENTER></BODY>
</HTML>";

mail($to, $subject, $body, $headers);

I get the table but no image, just the box with the red cross.

 

Link to comment
https://forums.phpfreaks.com/topic/81914-solved-embedded-images-email/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.