ILIAS  Release_4_1_x_branch Revision 61804
 All Data Structures Namespaces Files Functions Variables Groups Pages
class.ilCronMailNotification.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
12 {
13  public function sendNotifications()
14  {
15  require_once 'Services/Mail/classes/class.ilMailSummaryNotification.php';
16 
17  $msn = new ilMailSummaryNotification();
18  $msn->send();
19 
20  return true;
21  }
22 }
23 ?>