ajout app
This commit is contained in:
26
SNIPE-IT/resources/views/vendor/notifications/email-plain.blade.php
vendored
Normal file
26
SNIPE-IT/resources/views/vendor/notifications/email-plain.blade.php
vendored
Normal file
@ -0,0 +1,26 @@
|
||||
<?php
|
||||
// TODO: Translate
|
||||
if (! empty($greeting)) {
|
||||
echo $greeting, "\n\n";
|
||||
} else {
|
||||
echo $level == 'error' ? 'Whoops!' : 'Hello!', "\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";
|
||||
}
|
||||
|
||||
if (! empty($signOff)) {
|
||||
echo implode("\n", $signOff), "\n";
|
||||
}
|
||||
if (! empty($siteName)) {
|
||||
echo implode("\n", $siteName), "\n";
|
||||
}
|
Reference in New Issue
Block a user