Hi , I am facing one big problem in PHP , iam a Beginer in php , so i cant get that problem All HTML content are going to subscriber email inbox, after opening the email some time the image content appearing after some time it is disappearing , i cant get that problem please help me . ..... please
the following code
<?php
/ recipients /
$to = $_REQUEST["emailid"] . ', '; // note the comma
$Bcc = $_REQUEST["bcclist"]; //additional
/ message /
$message ='<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>UBNQtech SAS Training</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<div align="center">
</div>
</body>
</html>
//for multiple
// To send HTML mail, the Content-type header must be set
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
//trying for bcc option
$headers .= 'From: UBNQTECH Training <training@qtech-solutions.com>' . "\r\n";
//$headers .= 'Bcc: '. $REQUEST['bcclist']' '. "\r\n";
$headers .= "BCC: " . $REQUEST["bcclist" ] . ";\r\n";
//end of the code
$subject="SAS TRAINING FROM UBNQTECH";
mail($to, $subject, $message, $headers);
echo("<strong>Advertisement sent Sucessfully</strong>");
echo('<a href="http://www.qtech-solutions.com/templa/ubnadsfor003.htm"><font size="2" face="Verdana, Arial, Helvetica, sans-serif"> Back</font></a>');
?>
Please help me , Images are not visible , I cant get the problem , code is correct in my expectations ... please help me...... does any body knows the problem please send me the solutions