github.com/voedger/voedger@v0.0.0-20240520144910-273e84102129/pkg/sys/smtp/types.go (about) 1 /* 2 * Copyright (c) 2022-present unTill Pro, Ltd. 3 */ 4 5 package smtp 6 7 type Cfg struct { 8 Host string 9 Port int32 10 Username string 11 PwdSecret string 12 From string 13 }