github.com/keysonZZZ/kmg@v0.0.0-20151121023212-05317bfd7d39/kmgEmail/SmtpRequest.go (about)

     1  package kmgEmail
     2  
     3  type SmtpRequest struct {
     4  	SmtpHost     string
     5  	SmtpPort     int
     6  	SmtpUsername string //also as stmp username
     7  	SmtpPassword string
     8  	From         string
     9  	To           []string
    10  	Subject      string
    11  	Message      string
    12  
    13  	Socks4aProxyAddr string
    14  }