File indexing completed on 2025-01-19 04:46:30
0001 <div class="fancy header" dir="ltr"> 0002 0003 <div dir="ltr"> {{ header.subject|safe }} 0004 </div> 0005 <table class="outer"> 0006 <tbody> 0007 <tr> 0008 <td width="100%"> 0009 0010 <table> 0011 0012 <tr> 0013 <th align="left" style="font-size: 10px;">{{ header.fromi18n }}</th> 0014 <td style="font-size: 10px;">{{ header.from.str}} 0015 0016 {% if header.resentFrom %} 0017 {{ header.resentFromi18n }} {{ header.resentFrom }} 0018 {% endif %} 0019 0020 {% if vCardName %} 0021 <a href="{{ header.vcardname|safe }}">{{ header.vcardi18n }}</a> 0022 {% endif %} 0023 0024 {% if header.organization %} 0025 ("{{ header.organization}}") 0026 {% endif %} 0027 0028 </td> 0029 </tr> 0030 0031 <tr> 0032 <th align="left" style="font-size: 10px;">{{ header.toi18n }}</th> 0033 <td style="font-size: 10px;">{{ header.to.expandableTo|safe }}</td> 0034 </tr> 0035 0036 {% if header.cc.isSet %} 0037 <tr> 0038 <th align="left" style="font-size: 10px;"> {{ header.cci18n }} </th> 0039 <td style="font-size: 10px;">{{ header.cc.expandableCc|safe }}</td> 0040 </tr> 0041 {% endif %} 0042 0043 {% if header.bcc.isSet %} 0044 <tr> 0045 <th align="left" style="font-size: 10px;"> {{ header.bcci18n }} </th> 0046 <td style="font-size: 10px;">{{ header.bcc.expandableBCC|safe }}</td> 0047 </tr> 0048 {% endif %} 0049 0050 {% if header.sender.isSet %} 0051 <tr> 0052 <th align="left" style="font-size: 10px;"> {{ header.senderi18n }} </th> 0053 <td style="font-size: 10px;">{{ header.sender.str }}</td> 0054 </tr> 0055 {% endif %} 0056 0057 {% if header.ListId %} 0058 <tr> 0059 <th align="left" style="font-size: 10px;"> List-Id: </th> 0060 <td style="font-size: 10px;">{{ header.ListId }}</td> 0061 </tr> 0062 {% endif %} 0063 0064 <tr> 0065 <th align="left" style="font-size: 10px;">{{ header.datei18n }} </th> 0066 <td dir="{{ dateDir }}" style="font-size: 10px;">{{ header.date.short }}</td> 0067 </tr> 0068 0069 <tr> 0070 <td colspan="2"><div id="attachmentInjectionPoint"></div></td> 0071 </tr> 0072 0073 </table> 0074 </td> 0075 0076 {% if header.photourl %} 0077 <td align="center"> 0078 <div style="font-size:0.8em ! important;border:1px solid black ! important;background-color:#3384b3 ! important;"> 0079 <img src="{{ header.photourl }}" width="{{ header.photowidth }}" height="{{ header.photoheight }}" /> 0080 </div> 0081 </td> 0082 {% endif %} 0083 0084 </tr> 0085 0086 {% if header.spamHTML %} 0087 <table > 0088 <tbody> 0089 <tr> 0090 <td> 0091 <div class="spamheader" > 0092 <span><b>{{ header.spamstatusi18n }}</b></span> 0093 <span>{{ header.spamHTML|safe }}</span> 0094 </div> 0095 </td> 0096 </tr> 0097 </tbody> 0098 </table> 0099 {% endif %} 0100 </tbody> 0101 </table> 0102 0103 </div>