mirror of
https://github.com/GSA/notifications-api.git
synced 2026-09-03 17:18:25 -04:00
14 lines
253 B
Plaintext
14 lines
253 B
Plaintext
|
|
{% if show_sender %}
|
||
|
|
<p class="sms-message-sender">
|
||
|
|
From: {{ sender }}
|
||
|
|
</p>
|
||
|
|
{% endif %}
|
||
|
|
{% if show_recipient %}
|
||
|
|
<p class="sms-message-recipient">
|
||
|
|
To: {{ recipient }}
|
||
|
|
</p>
|
||
|
|
{% endif %}
|
||
|
|
<div class="sms-message-wrapper">
|
||
|
|
{{ body }}
|
||
|
|
</div>
|