I want to login into an server without sending any mail.
Code for explanation:
Dim S As New SMTP()
Dim IsOk As Boolean
IsOk = S.Connect("smtp.example.com","994","username","password")
IF IsOk Then
MsgBox("username, " & "you are logged in successfully.")
End If
What is the most efficient and fastest way to login into server without sending any mail?