<?php 

    
// ////////////////////////////////////////////////////////
    // DISCLAIMER / LICENSE AGREEMENT v1.0
    //
    // This script is developed by Digitalus Webhosting & 
    // Webdesign and can be used by people who would like 
    // to host a simple contact form on their website. 
    // The script is nothing more than a tool which is designed
    // to do nothing more than that. 
    // Digitalus Webhosting & Webdesign can not give any 
    // support on the script nor help out to get the script
    // working.
    // Digitalus Webhosting & Webdesign can not be held 
    // resonsible for any problems or damage which are caused 
    // by usage of the scripts.
    // Use the scripts at your own risk.
    // Digitalus Webhosting & Webdesign has the right to change
    // this disclaimer without any notifications.
    // ////////////////////////////////////////////////////////

    // ////////////////////////////////////////////////////////
    // THE CODE BELOW IS REQUIRED FOR THE SCRIPTS TO WORK
    // PLEASE DON'T CHANGE ANYTHING
    
require 'gateway.class.php';

    
$stuur_email = new email();
    
// ////////////////////////////////////////////////////////
    
    // THIS IS A LINE YOU'RE ALLOWED TO EDIT
    // CHANGE IT TO YOUR OWN EMAILADDRESS
    
$stuur_email->ontvanger    "uw.eigen@emailadres.hier";                
    
// ////////////////////////////////////////////////////////
    
    // ////////////////////////////////////////////////////////
    // THE CODE BELOW IS REQUIRED FOR THE SCRIPTS TO WORK
    // PLEASE DON'T CHANGE ANYTHING
    
$stuur_email->get_post($_POST);
        
    
// SEND MESSAGE
    
$stuur_email->verstuur_bericht();
    
// ////////////////////////////////////////////////////////    

?>