Is there any utilities one can make use immediately to send emails via SMTP? Close source, or open source, doesn't matter.
Any suggestions?
Printable View
Is there any utilities one can make use immediately to send emails via SMTP? Close source, or open source, doesn't matter.
Any suggestions?
vbRichClient5 has the following classes:
cRPCClientInfo, cRPCConnection, cRPCListener, cRPCListenerThread, cRPCStatusInfo, cTCPClient, cTCPServer, cUDP
I don't know if they can be used to send emails, maybe Olaf can answer this question.
If commercial libraries are acceptable, I've been using Chilkat with success: https://www.chilkatsoft.com/default.asp
There's a lot to handle with SMTP like encryption, DKIM, attachments, etc...so rolling your own would be a big job.
At work we're using the "Dart-Dlls" (former PowerTCP-COMponents) for all kind of Mailing-stuff -
they still offer bundles with COM/ActiveX-support:
http://www.dart.com/mail-activex-email-library-api.aspx
I agree with jpbro, that "writing your own, based on plain winsock-APIs" would be a huge task these days (with all the SSL/TLS-stuff now involved).
But since you mentioned the RC5-(socket-based) Communication-Classes (which BTW don't support standard-Mail-protocols out of the box):
Do you plan to use Mail-Protocols only as "just another transport-vehicle"?
(to ensure "transfers to a Web-Host" in conjunction with your planned "Instant-Messenger-App").
If yes, there are far better ways to approach that.
Olaf
Perhaps some of these projects can help?
https://www.planet-source-code.com/v...k+SSL&lngWId=1
Why wouldn't you just use the CDO library that Windows comes with?
There are thousands of samples out there, though some are pretty crudely done and appear to be based on very ancient ASP VBScript copy/pasting.
Also, vbSendEmail library (free with source code)
http://www.freevbcode.com/ShowCode.asp?ID=109
Resurrected = dreammanor ???
Guys. Sorry for the late reply.
Nope. Not in this case. But I'd like to learn about the RC5-(socket-based) Communication-Classes. :pQuote:
Do you plan to use Mail-Protocols only as "just another transport-vehicle"?
Quote:
Why wouldn't you just use the CDO library that Windows comes with?
Quote:
Also, vbSendEmail library (free with source code)
Commercial libraries are not my options. I will try those mentioned above. Thanks;)Quote: