Sample code for 30+ languages & platforms
Xbase++

Verify SMTP Login (Connect and Authenticate)

See more SMTP Examples

Demonstrates the Chilkat MailMan.VerifySmtpLogin method, which tests whether Chilkat can connect to the configured SMTP server and successfully authenticate using the current SMTP authentication settings. This example configures the SMTP host and credentials and verifies login.

Background: This goes one step further than VerifySmtpConnection: after reaching the server it also performs the AUTH exchange with your username and password (or OAuth2 token). It's the ideal preflight check when validating credentials or diagnosing "why won't my mail send?" — a false result after a good connection points squarely at bad credentials or an unsupported auth method rather than a network problem.

Chilkat Xbase++ Downloads

Xbase++
LOCAL nSuccess
LOCAL oMailman
LOCAL nLoggedIn

nSuccess := 0

//  Demonstrates the MailMan.VerifySmtpLogin method, which tests whether Chilkat can connect
//  to the configured SMTP server and successfully authenticate using the current SMTP
//  authentication settings.

oMailman := CreateObject("Chilkat.MailMan")

//  Configure the SMTP server connection.
oMailman:SmtpHost := "smtp.example.com"
oMailman:SmtpPort := 465
oMailman:SmtpSsl := 1
oMailman:SmtpUsername := "user@example.com"
oMailman:SmtpPassword := "myPassword"

//  Test both connectivity and authentication.
nLoggedIn := oMailman:VerifySmtpLogin()

IF (nLoggedIn == 1)
    ? "Successfully connected and authenticated with the SMTP server."
ELSE
    ? "SMTP connect or login failed."
ENDIF

oMailman:destroy()