Update of /cvsroot/phpcms-plugins/admin4phpCMS/modules/mail
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12823/modules/mail
Modified Files:
class.module_mail.php
Log Message:
several changes
Index: class.module_mail.php
===================================================================
RCS file: /cvsroot/phpcms-plugins/admin4phpCMS/modules/mail/class.module_mail.php,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- class.module_mail.php 30 May 2004 18:03:42 -0000 1.2
+++ class.module_mail.php 4 Jun 2004 11:11:58 -0000 1.3
@@ -1,5 +1,44 @@
<?php
+/**
+* The email-module
+*
+* This program is free software; you can redistribute it and/or modify
+* it under the terms of the GNU General Public License as published by
+* the Free Software Foundation; either version 2 of the License, or
+* (at your option) any later version.
+*
+* This program is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+* GNU General Public License for more details.
+*
+* You should have received a copy of the GNU General Public License
+* along with this program; if not, write to the Free Software
+* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+*
+* @author Martin Jahn <mj...@us...>
+* @license http://opensource.org/licenses/gpl-license.php GNU Public License
+* @copyright Copyright (c) 2004, Martin Jahn
+* @version $Id$
+* @package admin4phpCMS
+* @subpackage module_mail
+*
+**/
+/*
+* $Log$
+* Revision 1.3 2004/06/04 11:11:58 mjahn
+* several changes
+*
+*
+*/
+/**
+* Email-class
+*
+* @package admin4phpCMS
+* @subpackage module_mail
+* @todo Get the class working correctly
+**/
class module_mail extends module {
function init () {
|