blob: 4886b83cff0e775ee16911441ddc0525e85edd6e (
plain) (
blame)
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
|
package models
import (
"time"
"github.com/emersion/go-message/mail"
)
// This interface needs to be implemented for compliance with aerc-templates(7)
type TemplateData interface {
Account() string
Folder() string
To() []*mail.Address
Cc() []*mail.Address
Bcc() []*mail.Address
From() []*mail.Address
Peer() []*mail.Address
ReplyTo() []*mail.Address
Date() time.Time
DateAutoFormat(date time.Time) string
Header(name string) string
Subject() string
Number() int
Labels() []string
Flags() []string
MessageId() string
Size() int
OriginalText() string
OriginalDate() time.Time
OriginalFrom() []*mail.Address
OriginalMIMEType() string
OriginalHeader(name string) string
Recent(folders ...string) int
Unread(folders ...string) int
Exists(folders ...string) int
RUE(folders ...string) string
Connected() bool
ConnectionInfo() string
ContentInfo() string
StatusInfo() string
TrayInfo() string
PendingKeys() string
}
|