Ignore:
Timestamp:
Nov 5, 2012, 9:32:10 PM (12 years ago)
Author:
chronos
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Common/Global.php

    r455 r459  
    119119  function AddEmailToQueue($To, $Subject, $Content, $From, $AttachmentFileId = '')
    120120  {
    121     $Values = array('Address' => $To,
     121    $Values = array('To' => $To,
    122122      'Subject' => $Subject, 'Content' => $Content, 'Time' => 'NOW()',
    123123      'From' => $From);
     
    147147      $this->Database->update('EmailQueue', 'Id='.$DbRow['Id'], array('Archive' => 1));
    148148      $this->Modules['Log']->NewRecord('System', 'SendEmail', $DbRow['Id']);
    149       $Output .= 'To: '.$DbRow['Address'].'  Subject: '.$DbRow['Subject'].'<br />';
     149      $Output .= 'To: '.$DbRow['To'].'  Subject: '.$DbRow['Subject'].'<br />';
    150150    }   
    151151    return($Output);
Note: See TracChangeset for help on using the changeset viewer.