BookStack/resources/views/vendor/notifications/email-plain.blade.php

21 lines
336 B
PHP
Raw Normal View History

<?php
if (! empty($greeting)) {
echo $greeting, "\n\n";
}
if (! empty($introLines)) {
echo implode("\n", $introLines), "\n\n";
}
if (isset($actionText)) {
echo "{$actionText}: {$actionUrl}", "\n\n";
}
if (! empty($outroLines)) {
echo implode("\n", $outroLines), "\n\n";
}
2016-12-04 14:08:04 +00:00
echo "\n";
echo setting('app-name'), "\n";