-
SMTP Client for Qt
Hi all, :)
I was created a small library: SmtpClient for Qt. The SmtpClient for Qt is small library written for Qt 4 (C++ version) that allows application to send complex emails (plain text, html, attachments, inline files, etc.) using the Simple Mail Transfer Protocol (SMTP).
Homepage: https://github.com/bluetiger9/SmtpClient-for-Qt
SMPT Client for Qt currently supports:
- TCP and SSL connections to SMTP servers
- SMTP authentication (PLAIN and LOGIN methods)
- sending MIME emails (to multiple recipients)
- plain text and HTML (with inline files) content in emails
- multiple attachments and inline files (used in HTML)
- different character sets (ascii, utf-8, etc) and encoding methods (7bit, 8bit, base64)
- error handling
Examples: https://github.com/bluetiger9/SmtpCl.../wiki/Examples
A print-screen of an email sent using this library:
http://img546.imageshack.us/img546/2...qtexample3.png
Any ideas or suggestions are welcomed.:)
Enjoy.:cool:
-
Re: SMTP Client for Qt
Great work!. Many would benefit.
-
Re: SMTP Client for Qt
-
Re: SMTP Client for Qt
-
Re: SMTP Client for Qt
Wow nice code you provided!
Do you plan to upgrade it to support TLS in addition to SSL
-
Re: SMTP Client for Qt
Go morning, How I use SMTP Client for Qt but I dont Know how I cant make multiple types of recipients (to, cc, bcc) pleace somebody cant help me
-
Re: SMTP Client for Qt
Nice surprise about this shorter form. Can you tell us what it is you are talking/writing about?Has any info. about this shorter form been posted before (and i just missed it)?
-
Re: SMTP Client for Qt
thanks . its use ful for me
-
Re: SMTP Client for Qt
I've got your smtp code running great, but have an interesting problem. I send an email right on app start and stop. The start email always goes out, but the stop email does not. I was wondering if you are running the smtp send code in a thread?
If so, any wait make the send function wait for completion? (synchronous)?
Also, is there a list of functions and parameters?