hello for all
i tried to send iframe page via email, i used this code
$sender_email=$_POST["email"];
$name=$_POST["name"];
$subject="hello";
$text=" <iframe marginwidth=1 marginheight=1 height=600 width=600 border=0 frameborder=0 src='http://site.com/site/mail_invention.php?group_id=$group_id' name='name'>
Your browser does not support inline frames or is currently configured not to display inline frames.
</iframe>";
$email=$_POST["friend_email"];
$headers="From:$name <$sender_email>\r\n";
$headers .= "Reply-To: $sender_email\r\n";
$headers .= "Date: " . date("r") . "\r\n";
$headers .= "Return-Path: $sender_email\r\n";
$headers .= "MIME-Version: 1.0\r\n";
$headers .= "Message-ID: " . date("r") . $_SERVER["name"]."\r\n";
$headers .= "Content-Type: text/html; charset=utf-8\r\n";
$headers .= "X-Priority: 1\r\n";
$headers .= "Importance: High\r\n";
$headers .= "X-MXMail-Priority: High\r\n";
$headers .= "X-Mailer: PHP Mailer 1.0\r\n";
mail($email,$subject,$text,$headers);
on mail inbox show: "Your browser does not support inline frames or is currently configured not to display inline frames."
so is that possible to send page via email.
thanks and regards