Changeset 526 for trunk/Modules/Network/Administration.php
- Timestamp:
- Apr 21, 2013, 10:23:56 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Network/Administration.php
r525 r526 27 27 $Form = new Form('Email'); 28 28 $Form->LoadValuesFromForm(); 29 $Result = $this->System-> AddEmailToQueue($Form->Values['Address'],29 $Result = $this->System->EmailQueue->AddItem($Form->Values['Address'], 30 30 $Form->Values['Subject'], $Form->Values['Content'], 31 31 $this->System->Config['Web']['Admin'].' <'.$this->System->Config['Web']['AdminEmail'].'>'); … … 34 34 if($_GET['Action'] == 'ProcessEmailQueue') 35 35 { 36 $Output = $this->System-> ProcessEmailQueue();36 $Output = $this->System->EmailQueue->Process(); 37 37 $Output = $this->SystemMessage('Zpracování fronty emailů', 'Nové emaily byly odeslány').$Output; 38 38 }
Note:
See TracChangeset
for help on using the changeset viewer.