Initial Commit
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2022-06-27 21:42:59 +02:00
commit daf58bb4ca
30 changed files with 3040 additions and 0 deletions

13
pkg/domain/smtp.go Normal file
View File

@ -0,0 +1,13 @@
package domain
type SMTPSettings struct {
FromAddress string
FromName string
HELOName string
Host string
Password string
Port int
StartTLS bool
TLSInsecureSkipVerify bool
Username string
}