xref: /webtrees/resources/views/emails/message-user-text.phtml (revision b8fc901f205cd6af65496b916bf63547a3065a2f)
1<?php
2
3use Fisharebest\Webtrees\I18N;
4
5?>
6<?= I18N::translate('Hello %s…', $recipient->realName()) ?>
7
8<?= /* I18N: %s is a person's name */ I18N::translate('%s sent you the following message.', $sender->realName()) ?>
9
10------------------------------------------------------------
11<?= $message ?>
12
13------------------------------------------------------------
14
15<?php if ($url !== '') : ?>
16<?= I18N::translate('This message was sent while viewing the following URL: ') ?>
17<?= $url ?>
18<?php endif ?>
19