Changeset 459 for trunk/Common/Global.php
- Timestamp:
- Nov 5, 2012, 9:32:10 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Common/Global.php
r455 r459 119 119 function AddEmailToQueue($To, $Subject, $Content, $From, $AttachmentFileId = '') 120 120 { 121 $Values = array(' Address' => $To,121 $Values = array('To' => $To, 122 122 'Subject' => $Subject, 'Content' => $Content, 'Time' => 'NOW()', 123 123 'From' => $From); … … 147 147 $this->Database->update('EmailQueue', 'Id='.$DbRow['Id'], array('Archive' => 1)); 148 148 $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 />'; 150 150 } 151 151 return($Output);
Note:
See TracChangeset
for help on using the changeset viewer.