Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Blob images in mail()

Status
Not open for further replies.

Kriekie

Technical User
Nov 21, 2004
10
ZA
Hi

I have a script that successfully sends a message:

(The Basic Script):
Code:
$from = "me@myemail.co.za";
$subject = "Test E-Mail";

$headers = "MIME-Version: 1.0\r\n"; 
$headers = "From: My Email<$from>\n"; 
$headers .= "Content-type: text/html; charset=iso-8859-1\r\n"; 

$message = "This is an html message with images";
$message .= "<img src='[URL unfurl="true"]http://www.mywebsite.com/images/logo.jpg'[/URL] width='60' height='60'>";
$message .= "<img src=''[URL unfurl="true"]http://www.mywebsite.com/view.php?ID=$ID";[/URL]

if (mail($email,$subject,$message,$headers)) { 
echo "Message has been sent";
}
else {
   echo "Message was not sent <p>";
   exit;
}

The email sends fine, the logo displays fine, but the blob image comes up blank. If I copy the url directly into my browser the blob image displays with no problem. Any ideas?

Thanks!
 
It could be some of the strangeness in your HTML.

Instead of:

$message = "This is an html message with images";
$message .= "<img src=' width='60' height='60'>";
$message .= "<img src=''
Try:

$message = "This is an html message with images";
$message .= '<img src=" width="60" height="60">';
$message .= '<img src=" . $ID . '">';

Want the best answers? Ask the best questions!

TANSTAAFL!!
 
In the original there was a misplaced single quote:
Code:
$message .= "<img src='[COLOR=red][b]'[/b][/color][URL unfurl="true"]http://www.mywebsite.com/view.php?ID=$ID";[/URL]

However, it does not explain why sleipnir's code would not work. Mail clients may be more picky with headers than browsers. What headers does the PHP script send out?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top