• 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 help with mail feature of my program

I'm curently writing a program in VB6 that gathers notes and records them. One of the included features is a simple SMTP program that will CC anybody the user wants with a copy of the notes. Only problem is I need to have a way to catch smtp errors. So if the mail goes through fine and there's no errors, the mail goes out, if there are errors, it detects these, stops then prompts the user.

How do I do this?
 
A SMTP component or winsock component if you want to go really low-level. Try codeproject.com and Google for free ones. Windows Developer Journal has had a couple of articles on SMTP as well.
 
Back
Top