Files
lichterei-web/kirby/config/templates/emails/auth/login.php
Bastian Allgeier 1c22148d7b Upgrade to 3.7.0
2022-06-27 11:59:19 +02:00

17 lines
267 B
PHP
Executable File

<?php
use Kirby\Toolkit\I18n;
/**
* @var \Kirby\Cms\User $user
* @var string $site
* @var string $code
* @var int $timeout
*/
echo I18n::template(
'login.email.login.body',
null,
compact('user', 'site', 'code', 'timeout'),
$user->language()
);