xref: /webtrees/resources/views/emails/message-user-text.phtml (revision e3c147d0d53873311b7c137c41b4439e01d4189e)
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