mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-20 15:31:15 -05: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>
|