<?php
include_once("header.php");
?>
<?php
include_once("../../../vars.php");
include_once("../model/message.php");
$to_address = "gerland@buffalo.edu";
$to_name = "Jim UB";
$from_address = "gerlanjr@buffalostate.edu";
$from_name = "Jim Buffalo State"; 
$subject = "Murach Chapter 22 Test Email";
$body = "This ia a <strong>test</strong>\r\n";
$is_body_html = true;
echo("calling send_email with $to_address, $to_name, $from_address, $from_name, $subject, $body, $is_body_html<br />");
send_email($to_address, $to_name, $from_address, $from_name, $subject, $body, $is_body_html);
?>
<?php
include_once("footer.php");
?> 