Show
Ignore:
Timestamp:
08/29/06 12:34:21 (6 years ago)
Author:
max-horvath
Message:

"2006-08-29 Max Horvath <max.horvath@…>

  • Cleaned up PHPdoc tags
  • Updated german translation
  • Updated portuguese translation, thanks to Gabriel Hahmann
  • Added spanish translation, thanks to Ricardo Jose Guevara Ochoa"
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/wifidog-auth/wifidog/classes/Mail.php

    r1017 r1084  
    4141 * @link       http://www.wifidog.org/ 
    4242 */ 
     43 
     44/** 
     45 * Load required classes 
     46 */ 
     47require_once('include/class.phpmailer.php'); 
     48require_once('include/class.smtp.php'); 
    4349 
    4450/** 
     
    5056 * @copyright  2005-2006 Francois Proulx, Technologies Coeus inc. 
    5157 */ 
    52  
    53 require_once('include/class.phpmailer.php'); 
    54 require_once('include/class.smtp.php'); 
    55  
    5658class Mail 
    5759{ 
     
    314316        $mail = new PHPMailer(); 
    315317        $mail->CharSet = "utf-8"; 
    316          
    317         $mail->Mailer = EMAIL_MAILER;         
     318 
     319        $mail->Mailer = EMAIL_MAILER; 
    318320        if (EMAIL_MAILER == 'smtp') { 
    319321            $mail->Host = EMAIL_HOST; 
     
    325327            } 
    326328        } 
    327          
     329 
    328330        $mail->AddAddress($this->getRecipientEmail(), $this->getRecipientName()); 
    329331        $mail->From = $this->getSenderEmail();