<?php

//the recipient email
$emailTo 'dv at josheli.com';

//the sender's email
$emailFrom 'dv at josheli.com';//

//name of the server this script is on. if it's on a Vox server
//this value should be one of the Vox server names, i.e. Moray, Octopus, etc.
//if this script is not on a Vox server, it can be anything or empty
$thisServer 'Moray';

/////////////////////////////////////////////////////////////////////////////

require 'voxinfo.php';

// create the voxinfo object
//remove array to check all servers
$vi = new voxinfo(array('Moray''Octopus'));//

//get and parse the vox xml doc
if( $vi->getinfo() ) {
    
$vi->sendemail($emailTo,$emailFrom,$thisServer);
}


?>