phpgroupware-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Phpgroupware-cvs] news_admin/inc class.mailer_smtp.inc.php,1.1


From: skwashd
Subject: [Phpgroupware-cvs] news_admin/inc class.mailer_smtp.inc.php,1.1
Date: Thu, 13 Oct 2005 15:00:00 +0200

Update of news_admin/inc

Added Files:
     Branch: MAIN
            class.mailer_smtp.inc.php 

Log Message:
missing file

====================================================
Index: class.mailer_smtp.inc.php
<?php
        /**
        * phpGroupWare - phpmailer wrapper script
        * @author Dave Hall - skwashd at phpgroupware.org
        * @copyright Copyright (C) 2005 Free Software Foundation, Inc. 
http://www.fsf.org/
        * @license http://www.gnu.org/licenses/gpl.html GNU General Public 
License
        * @package email
        * @version $Id: class.mailer_smtp.inc.php,v 1.1 2005/10/13 13:00:49 
skwashd Exp $
        */

        /**
        address@hidden phpmailer
        */
        include_once(PHPGW_APP_INC . '/phpmailer/class.phpmailer.php');

        /**
        * class smtp
        *
        * bo class for assembling messages for sending via class send
        * @internal server side attachment storage technique borrowed from 
Squirrelmail
        */
        class mailer_smtp extends PHPMailer
        {
                /**
                * @constructor
                */
                function mailer_smtp()
                {
                        $this->IsSMTP(true);
                        $this->Host = 
$GLOBALS['phpgw_info']['server']['smtp_server'];
                        $this->Port = 
$GLOBALS['phpgw_info']['server']['smtp_port'];
                        $this->Version = 'custom - phpGroupWare 1.73';
                }
        }
?>






reply via email to

[Prev in Thread] Current Thread [Next in Thread]