An SMTP Client writen in C++ for Qt. Allows applications to send emails (MIME with text, html, attachments, inline files, etc.) via SMTP. Supports SSL and SMTP authentication.
Qt4 doesn't have Q_NULLPTR defined, nor does it support RFC2822Date. I manually constructed the RFC2822Date if QT_MAJOR_VERSION < 5 based on the Qt5 source and replaced Q_NULLPTR with nullptr. Worked for me using MSVC2013 as my compiler.
I think my Qt Creator style also fixed indentation for a couple lines.
Qt4 doesn't have
Q_NULLPTR
defined, nor does it support RFC2822Date. I manually constructed theRFC2822Date
ifQT_MAJOR_VERSION < 5
based on the Qt5 source and replacedQ_NULLPTR
withnullptr
. Worked for me using MSVC2013 as my compiler.I think my Qt Creator style also fixed indentation for a couple lines.