<?php
/**
* @version $Id: toolbar.massmail.html.php,v 1.2 2005/11/08 10:26:19 eliasan Exp $
* @package Mambo
* @subpackage Massmail
* @copyright (C) 2000 - 2005 Miro International Pty Ltd
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL
* Mambo is Free Software
*/
/** ensure this file is being included by a parent file */
defined( '_VALID_MOS' ) or die( 'Direct Access to this location is not allowed.' );
/**
* @package Mambo
* @subpackage Massmail
*/
class TOOLBAR_massmail {
/**
* Draws the menu for a New Contact
*/
function _DEFAULT() {
mosMenuBar::startTable();
mosMenuBar::custom('send','publish.png','publish_f2.png','Send Mail',false);
mosMenuBar::spacer();
mosMenuBar::cancel();
mosMenuBar::spacer();
mosMenuBar::help( '453.screen.users.massmail' );
mosMenuBar::endTable();
}
}
?>