Version 1.1
This commit is contained in:
parent
1071beb43d
commit
28666c2603
12
README.md
12
README.md
@ -1,8 +1,18 @@
|
|||||||
SMTP Client for Qt (C++) - Development Branch (v. 1.1 beta)
|
SMTP Client for Qt (C++) - Version 1.1
|
||||||
=============================================
|
=============================================
|
||||||
|
|
||||||
The SmtpClient for Qt is small library writen 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).
|
The SmtpClient for Qt is small library writen 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).
|
||||||
|
|
||||||
|
##New in version 1.1:
|
||||||
|
|
||||||
|
- TLS (STARTTLS) connection is now supported
|
||||||
|
|
||||||
|
- multiple types of recipients (to, cc, bcc)
|
||||||
|
|
||||||
|
- nested mime emails (mixed/alternative, mixed/related)
|
||||||
|
|
||||||
|
- output compilant with RFC2045
|
||||||
|
|
||||||
|
|
||||||
## SMPT Client for Qt supports
|
## SMPT Client for Qt supports
|
||||||
|
|
||||||
|
@ -191,7 +191,9 @@ QString MimeMessage::toString()
|
|||||||
/* ---------------------------------- */
|
/* ---------------------------------- */
|
||||||
|
|
||||||
/* ------- Recipients / Cc ---------- */
|
/* ------- Recipients / Cc ---------- */
|
||||||
|
if (recipientsCc.size() != 0) {
|
||||||
mime += "Cc:";
|
mime += "Cc:";
|
||||||
|
}
|
||||||
for (i = 0, it = recipientsCc.begin(); it != recipientsCc.end(); ++it, ++i)
|
for (i = 0, it = recipientsCc.begin(); it != recipientsCc.end(); ++it, ++i)
|
||||||
{
|
{
|
||||||
if (i != 0) { mime += ","; }
|
if (i != 0) { mime += ","; }
|
||||||
@ -212,7 +214,9 @@ QString MimeMessage::toString()
|
|||||||
}
|
}
|
||||||
mime += " <" + (*it)->getAddress() + ">";
|
mime += " <" + (*it)->getAddress() + ">";
|
||||||
}
|
}
|
||||||
|
if (recipientsCc.size() != 0) {
|
||||||
mime += "\r\n";
|
mime += "\r\n";
|
||||||
|
}
|
||||||
/* ---------------------------------- */
|
/* ---------------------------------- */
|
||||||
|
|
||||||
/* ------------ Subject ------------- */
|
/* ------------ Subject ------------- */
|
||||||
|
Loading…
Reference in New Issue
Block a user