Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

vbSendMail 1

Status
Not open for further replies.

RonRepp

Technical User
Feb 25, 2005
1,031
US
Hi All:

Has anyone tried adding SSL and TLS security to vbSendMail?

The app worked great until we changed our Exchange server.

Thanks,


Ron Repp

If gray hair is a sign of wisdom, then I'm a genius.

My newest novel: Wooden Warriors
 
What symptoms do you get? Is it crashing? Do you get an error message.

Could it be an issue with a change of SMTP server name or that the server now needs username / password authentication?
 
These can all be adjusted by changing various properties in the code. E.g. this code is retrieving values from an INI file to supply to VbSendMail:
Code:
        .SMTPHost = GmsIniGet("Comms", "SmtpHost", eml.ServerName)
        .SMTPPort = GmsIniGet("Comms", "SmtpPort", .SMTPPort)
        If GmsIniGet("Comms", "SmtpAuthenticate", "no") = "yes" Then
          .UseAuthentication = True
          .UserName = GmsIniGet("Comms", "SmtpUserName")
          .Password = GmsIniGet("Comms", "SmtpPassword") 
        End If
 
I do accept that but there ain't much to go on! My two posts were meant to be combined but my fingers had other plans.
 
>ain't much to go on!

Ah, that'll be because Ron made it fairly clear what he wanted in a different thread ... thread222-1505888
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top