Author |
|
Guests Guest Group
Joined: 10 November 2003
Online Status: Online Posts: 262
|
Posted: 06 October 2004 at 4:39pm | IP Logged
|
|
|
Hello,
We have just downloaded MailBee and are testing it. Till now what I have seen is that MailBee is a great product. I hope it solves our problem of securely Authenticating users on a Windows 2000 server.
Looking forward to buy this great product.
|
Back to Top |
|
|
Alex AfterLogic Support
Joined: 19 November 2003
Online Status: Offline Posts: 2206
|
Posted: 07 October 2004 at 7:08am | IP Logged
|
|
|
Thank you for your kind words about MailBee.
To perform secure authentication on Windows 2000 IIS SMTP service, you can use SMTP.AuthMethod=4 option which enables MailBee.SMTP to NTLM authentication (also known as Secure Password Authentication).
Set SMTP = CreateObject("MailBee.SMTP")
SMTP.LicenseKey = "your key"
SMTP.ServerName = "mail.server.com"
SMTP.AuthMethod = 4
SMTP.UserName = "user"
SMTP.Password = "pass"
If SMTP.Connect Then
' ...
' sending code
' ...
Else
MsgBox "Error #" & SMTP.ErrCode & _
", Server replied: " & SMTP.ServerResponse
End If
Regards,
Alex
|
Back to Top |
|
|