commit
7633337dd6
@ -106,6 +106,11 @@ void MimeMessage::addPart(MimePart *part)
|
||||
};
|
||||
}
|
||||
|
||||
void MimeMessage::setInReplyTo(const QString& inReplyTo)
|
||||
{
|
||||
mInReplyTo = inReplyTo;
|
||||
}
|
||||
|
||||
void MimeMessage::setHeaderEncoding(MimePart::Encoding hEnc)
|
||||
{
|
||||
this->hEncoding = hEnc;
|
||||
@ -252,6 +257,11 @@ QString MimeMessage::toString()
|
||||
|
||||
mime += "\r\n";
|
||||
mime += "MIME-Version: 1.0\r\n";
|
||||
if (!mInReplyTo.isEmpty())
|
||||
{
|
||||
mime += "In-Reply-To: <" + mInReplyTo + ">\r\n";
|
||||
mime += "References: <" + mInReplyTo + ">\r\n";
|
||||
}
|
||||
mime += QString("Date: %1\r\n").arg(QDateTime::currentDateTime().toString(Qt::RFC2822Date));
|
||||
|
||||
mime += content->toString();
|
||||
|
@ -54,6 +54,8 @@ public:
|
||||
void setSubject(const QString & subject);
|
||||
void addPart(MimePart* part);
|
||||
|
||||
void setInReplyTo(const QString& inReplyTo);
|
||||
|
||||
void setHeaderEncoding(MimePart::Encoding);
|
||||
|
||||
const EmailAddress & getSender() const;
|
||||
@ -79,6 +81,7 @@ protected:
|
||||
EmailAddress* sender;
|
||||
QList<EmailAddress*> recipientsTo, recipientsCc, recipientsBcc;
|
||||
QString subject;
|
||||
QString mInReplyTo;
|
||||
MimePart *content;
|
||||
bool autoMimeContentCreated;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user