CODE (There is no display for this page)
<?php //set the variable that will contain all recipients of the message $address= '(EMAIL ADDRESS 1)'.','.'(EMAIL ADDRESS 2)';//note the comma between email addresses //set the variable that will contain the email's subject $subject= "(INSERT TITLE HERE)"; //set a variable containing the body of the email. This message can use '\n\r' to start new lines, and can contain other variables from the page $emailtext= "(INSERT TEXT HERE)"; //fill in the variables in the mail command. Also fill in the from line with text mail($address, $subject, $emailtext, "From: (INSERT FROM SENDER TO APPEAR IN MAIL PROGRAMS)\n" . "X-Mailer: PHP 4.x"); ?>