You are here

protected function Notify::sendNotification in Backup and Migrate 5.0.x

Parameters

$subject:

$body:

$messages:

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

File

src/Core/Filter/Notify.php, line 84

Class

Notify
Notifies by email when a backup succeeds or fails.

Namespace

Drupal\backup_migrate\Core\Filter

Code

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