github.com/go-email-validator/go-email-validator@v0.0.0-20230409163946-b8b9e6a0552e/pkg/presentation/check-if-email-exist/smtp.go (about)

     1  package checkifemailexist
     2  
     3  // SMTPPresentation is a smtp presentation for check-if-email-exists
     4  type SMTPPresentation struct {
     5  	CanConnectSMTP bool `json:"can_connect_smtp"`
     6  	HasFullInbox   bool `json:"has_full_inbox"`
     7  	IsCatchAll     bool `json:"is_catch_all"`
     8  	IsDeliverable  bool `json:"is_deliverable"`
     9  	IsDisabled     bool `json:"is_disabled"`
    10  }