sendToMailingList() public method

Send an update to all users on the mailing list
public sendToMailingList ( $request, $notification )
$request PKPRequest
$notification object Notification
 /**
  * Check if the manager delegate can send to mailing list
  * the passed type of notification.
  * @copydoc PKPNotificationOperationManager::sendToMailingList()
  */
 function sendToMailingList($request, $notification)
 {
     assert($notification->getType() !== $this->getNotificationType() || $this->multipleTypesUpdate());
     parent::sendToMailingList($request, $notification);
 }