You are here

protected function Notify::sendNotification in Backup and Migrate 8.4

Parameters

$subject:

$body:

$messages:

1 call to Notify::sendNotification()
Notify::backupSucceed in lib/backup_migrate_core/src/Filter/Notify.php

File

lib/backup_migrate_core/src/Filter/Notify.php, line 66

Class

Notify
Class Notify

Namespace

BackupMigrate\Core\Filter

Code

protected function sendNotification($subject) {
  $messages = $this->logstash
    ->getAll();
  $body = $subject . "\n";
  if (count($messages)) {
  }

  // $body .=
}