mirror of
https://github.com/ngoduykhanh/wireguard-ui.git
synced 2025-04-19 19:59:13 +03:00
10 lines
194 B
Go
10 lines
194 B
Go
package emailer
|
|
|
|
type Attachment struct {
|
|
Name string
|
|
Data []byte
|
|
}
|
|
|
|
type Emailer interface {
|
|
Send(toName string, to string, subject string, content string, attachments []Attachment) error
|
|
}
|