-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmessages.go
45 lines (35 loc) · 887 Bytes
/
messages.go
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
package main
import (
"time"
)
//MessageType defines a type to messages
type MessageType int
const (
//PlainMail plain text e-mail message
PlainMail MessageType = iota + 1
//RichFormatMail e-mail with some sort of rich format
RichFormatMail
)
//Message defines the properties of a message
type Message struct {
Type MessageType
From string
To []string
CC []string
Subject string
Content string
}
//SendMessageResult defines the result of a send message operation
type SendMessageResult struct {
MessageID string
Date time.Time
Success bool
Errors []string
}
//MessageSender defines operations to send messages
type MessageSender interface {
//Send sends the message
Send(m Message) (SendMessageResult, error)
}
//MessageSenderCreator defines a function capable to create message senders
type MessageSenderCreator func() MessageSender