Mailify is a Go package for validating email addresses by checking their format, verifying the existence of MX records for the domain, and attempting to connect to the mail servers using SMTP.
To install the package, run:
go get github.com/adarsh-jaiss/mailify
To create a new client, use the NewClient function:
client, err := mailify.NewClient("sender@example.com")
if err != nil {
log.Fatalf("Failed to create mailify client: %v", err)
}
To validate an email address, use the ValidateEmail method:
result, err := client.ValidateEmail("recipient@example.com")
if err != nil {
log.Fatalf("Failed to validate email: %v", err)
}
fmt.Println("Validation result:", client.FormatValidationResult("recipient@example.com", result))
To get the mail servers for a domain, use the GetMailServers method:
mailServers, err := client.GetMailServers("example.com")
if err != nil {
log.Fatalf("Failed to get mail servers: %v", err)
}
fmt.Println("Mail servers:", mailServers)
To get the mail servers for a recipient email, use the GetMailServersFromReceipientEmail method:
mailServers, err := client.GetMailServersFromReceipientEmail("recipient@example.com")
if err != nil {
log.Fatalf("Failed to get mail servers: %v", err)
}
fmt.Println("Mail servers:", mailServers)
Here is a complete example demonstrating how to use the package : check examples