Changeset 93 for trunk/www/Base/Mail.php


Ignore:
Timestamp:
Aug 15, 2013, 11:17:26 PM (11 years ago)
Author:
chronos
Message:
  • Fixed: System variable as parameter to constructors of descendents of Module class.
  • Removed: End PHP mark "?>" from all files.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/www/Base/Mail.php

    r78 r93  
    1717    $this->AdditionalHeaders['MIME-Version'] = '1.0';
    1818    $this->AdditionalHeaders['Content-type'] = 'text/html; charset=UTF-8';
     19    $Headers = '';
    1920    foreach($this->AdditionalHeaders as $Index => $Item)
    2021    {
     
    2223    }
    2324    $Subject = $this->EncodeBase64($this->Subject);
    24     return(mail($this->Address, $Subject, $this->Content, $Headers));
     25    return(mail($this->RecipientAddress, $Subject, $this->Content, $Headers));
    2526  }
    2627
     
    3031  }
    3132}
    32 
    33 ?>
Note: See TracChangeset for help on using the changeset viewer.