]> BookStack Code Mirror - bookstack/blob - resources/views/vendor/notifications/email-plain.blade.php
respective book and chapter structure added.
[bookstack] / resources / views / vendor / notifications / email-plain.blade.php
1 <?php
2
3 if (! empty($greeting)) {
4     echo $greeting, "\n\n";
5 }
6
7 if (! empty($introLines)) {
8     echo implode("\n", $introLines), "\n\n";
9 }
10
11 if (isset($actionText)) {
12     echo "{$actionText}: {$actionUrl}", "\n\n";
13 }
14
15 if (! empty($outroLines)) {
16     echo implode("\n", $outroLines), "\n\n";
17 }
18
19 echo "\n";
20 echo setting('app-name'), "\n";