• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Need a free SMTP client ActiveX control

NogginBoink

Diamond Member
You'd think this would be something easy to find, but all the "free downloads" that I've found are free 30-day trial versions.

I just need a simple SMTP email sender that I can call from VBScript to send me the results of my backup jobs.

If anyone has a pointer to a suitable product I'd be quite grateful if you could pass it on.
 
But doesn't that use the user's mail settings? The vbscript is going to be running under the context of a user that doesn't have an email client set up.
 
Originally posted by: NogginBoink
Originally posted by: ndee
If you want something simple, study this link 🙂

Gee. Thanks. :disgust:

can you connect thru Winsock to Port 25 of a server? The commands for sending emails are really easy:

MAIL FROM: sender@mail.com
RCPT TO: recipient@mail.com
DATA
your
text
here
.




This will send an E-Mail and that's all you need. I'm nearly sure you can make such a connection with Winsock. It's been awhile since I last used VB.
 
Back
Top