I am wondering if there is a way to send an email (SMTP) through VB6. I have an application that just needs to send a simple email when the user is done to let a group know that
You should hopefully have the CDOSYS libraries installed on your machine:
CDO Messaging - MSDN
Creating and Sending a Message - MSDN
Sending email using CDOSYS ( THE REAL DEAL )
ASP Sending e-mail with CDOSYS
If you don't have that library (and aren't able to install it) then there's always CDONTS to fall back on but it is deprecated:
Using the CDONTS component to send email from ASP pages.