32 lines
696 B
HTML
32 lines
696 B
HTML
{% extends "base.html" %}
|
|
{# Copyright The IETF Trust 2007, All Rights Reserved #}
|
|
{% load ietf_filters %}
|
|
{% block title %}{{ liaison.title }}{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>Simulated Mail for Liaison Statement</h1>
|
|
|
|
<p>
|
|
Demo version of this tool does NOT actually send the liaison statement to the recipients.
|
|
</p>
|
|
<p>
|
|
Rather, the actual email body (including mail header) is displayed below.
|
|
</p>
|
|
<p>
|
|
In production mode, you will not see this screen.
|
|
</p>
|
|
|
|
<pre>
|
|
From: {{ message.From }}
|
|
To: {{ message.To }}
|
|
Cc: {{ message.Cc }}
|
|
Bcc: {{ message.Bcc }}
|
|
Subject: {{ message.Subject }}
|
|
|
|
{{ mail.body }}
|
|
</pre>
|
|
|
|
<a href="{% url liaison_list %}">Return to liaison list</a>
|
|
|
|
{% endblock %}
|