<?php
// This file is part of the Savane project
// <http://gna.org/projects/savane/>
//
// $Id$
//
// Savannah - Project registration STEP 6 Confirmation mail 
//    Here, you can configure the mail sent to user and admins.
//    BEWARE, this file content must be PHP, with no parse-error.
//    Do not modify it until you really know what you're doing.
//

// we include this as function, it's easier to work with vars
// in this way

function approval_gen_email ($group_name, $unix_group_name) {
   $message = '	
Your project registration for '.$GLOBALS['sys_name'].' has been approved.
Project Full Name:   '.$group_name.'
Project System Name: '.$unix_group_name.'
Project page:        '.$GLOBALS['sys_home'].'projects/'.$unix_group_name.'

Please note that it may take a few hours for the system files to
be updated (CVS repository creation for instance) after receiving this mail.

Enjoy the system, and please tell others about '.$GLOBALS['sys_name'].'. Let us know if there is anything we can do to help you.

 -- the '.$GLOBALS['sys_name'].' team
  	';

   return $message;
}

//
?>