Files
lichterei-web/kirby/config/templates/emails/auth/login.php
Bastian Allgeier 1ad1eaf387 Upgrade to 3.7.1
2022-07-12 13:33:21 +02:00

17 lines
255 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()
);