Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<template>
<div class="app-content-detail">
<div id="mail-message-header" class="section">
<h2 :title="subject">{{subject}}</h2>
<p class="transparency">
<!--{{printAddressList from}}
{{ t 'to' }}
{{printAddressList to}}
{{#if cc.length}}
({{ t 'cc' }} {{printAddressList cc}})
{{/if}}-->
</p>
</div>
<div class="mail-message-body">
<div id="mail-content">
<!--{{#if hasHtmlBody}}
<div id="show-images-text">
{{ t 'The images have been blocked to protect your privacy.'
}}
<button id="show-images-button">{{ t 'Show images from this
sender' }}
</button>
</div>
<div class="icon-loading">
<iframe src="{{htmlBodyUrl}}" seamless>
</iframe>
</div>
{{else}}
{{{body}}}
{{/if}}-->
</div>
<!-- {{#if signature}}
<div class="mail-signature">
{{{signature}}}
</div>
{{/if}} -->
<div class="mail-message-attachments"></div>
<div id="reply-composer"></div>
<input type="button" id="forward-button" value="Forward">
</div>
</div>
</template>
<script>
export default {
name: "Message",
data() {
return {
subject: 'Do you enjoy the Vue?'
};
}
}
</script>