?php
/* subject */
$subject = "Information";
/* message */
$message = '
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
<!--
.style1 {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: x-small;
}
-->
</style>
</html>
';
/* To send HTML mail, you can set the Content-type header. */
$headers = "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/html; charset=iso-8859-1\r\n";
/* additional headers */
$headers .= "From: ME <mySecurity@hotmail.com>\r\n";
/* and now mail it */
mail("******@hotmail.com", $subject, $message, $headers);
?>
hi i have this script to send emails. how can i just enter a email address in a text box and just press send instead of having to change in manually on here?
thanks