Wednesday, October 16, 2013

Change email notification when submitting a module for review




When submitting a module for review, only system administrator is notified   via email, not whole education committee.
C:\Users\jiansen\Desktop\CAS\jiansen_dir\www_cesei0_mobile\_lib\peer_review_tools.inc.php
line 192,  change
  while ($row_to = mysql_fetch_assoc($result_to)) {
      if($row_to['email'] != MAIL_DEFAULT){
         $mail->AddAddress($row_to['email']);
      }
   }
 
   $mail->AddBCC(MAIL_CESEI_ADMIN, MAIL_CESEI_ADMIN_NAME);

to

  $mail->AddAddress(MAIL_CESEI_ADMIN);

No comments:

Post a Comment