\r\n"; $headers .= "To: Majordomo \r\n"; $headers .= "X-Priority: 1\r\n"; $headers .= "X-MSMail-Priority: High\r\n"; $headers .= "X-Mailer: sendmail"; mail("majordomo@math.bu.edu", $subject, $message, $headers); $file = fopen( "subscribe.thankyou", "r" ); while( !feof($file) ) { $thanks .= fgetc($file); } fclose( $file ); print $thanks; } else { $file = fopen( "subscribe.nothankyou", "r" ); while( !feof($file) ) { $nothanks .= fgetc($file); } fclose( $file ); print $nothanks; } } else { $file = fopen( "subscribe.form", "r" ); while( !feof($file) ) { $form .= fgetc($file); } fclose( $file ); print $form; } ?>