Trying to have a PHP script send an email that contains two images that the user is pre-selecting from a previous page (out of a select element). I'm not quite sure how to accomplish the image attachment. Here is my code, not working obviously, please let me know if my logic is right or if I'm way off here.

<?php

$to=$_POST["email"];

$bannerimg=$_POST["banimg"];

$adimage=$_POST["adimage"];

$bannerimageshow=echo "<img src=imgdir/$bannerimg>"."<br /><br />";
$adimageshow=echo "<img src=addir/$adimage>"."<br /><br />";

echo $bannerimageshow;
echo $adimageshow;

/*
$subject=$_POST["subject"];

$message=$_POST["message"];

$from="mailface@mailface.com";

$headers=array();
$headers[]="MIME-Version: 1.0";
$headers[]="Content-type: text/html; charset=iso-8859-1";
$headers[]="Content-Transfer-Encoding: 8bit";
$headers[]="From: ".$from;

$advertised=mail($to,$bannerimageshow,$adimageshow,$subject,$message,join("\n",$headers));

if ($advertised){
echo "Working";
}

*/

?>

My echo statements are not returning anything. Any and all help is appreciated :)

Thanks in advance.

Dustin

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

echo has no return value.

Instead of

$bannerimageshow=echo "<img src=imgdir/$bannerimg>"."<br /><br />";

just use

$bannerimageshow="<img src=imgdir/$bannerimg>"."<br /><br />";

or, even simpler,

$bannerimageshow="<img src=imgdir/$bannerimg><br /><br />";
link|improve this answer
feedback

Your echo statements aren't working because you've commented them out.

<?php

$to=$_POST["email"];

$bannerimg=$_POST["banimg"];

$adimage=$_POST["adimage"];

$bannerimageshow=echo "<img src=imgdir/$bannerimg>"."<br /><br />";
$adimageshow=echo "<img src=addir/$adimage>"."<br /><br />";

echo $bannerimageshow;
echo $adimageshow;

$subject=$_POST["subject"];

$message=$_POST["message"];

$from="mailface@mailface.com";

$headers=array();
$headers[]="MIME-Version: 1.0";
$headers[]="Content-type: text/html; charset=iso-8859-1";
$headers[]="Content-Transfer-Encoding: 8bit";
$headers[]="From: ".$from;

$advertised=mail($to,$bannerimageshow,$adimageshow,$subject,$message,join("\n",$headers));

if ($advertised){
echo "Working";
}


?>
link|improve this answer
Thanks Poly, however, the echo statements I was referring to were $bannerimageshow and $adimageshow, which were above the commented sections. In any case, removing the comments altogether does not alter the outcome. – Dustin James Nov 28 '11 at 0:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.