woodpecker/plugin/smtp/smtp.go

10 lines
198 B
Go
Raw Normal View History

2014-06-04 21:25:38 +00:00
package smtp
type SMTP struct {
Host string `json:"host"`
Port string `json:"port"`
From string `json:"from"`
Username string `json:"username"`
Password string `json:"password"`
}