qt_demoe/tool/3rd_smtpclient/mimehtml.cpp

24 lines
322 B
C++
Raw Normal View History

2019-11-21 06:28:56 +00:00
#include "mimehtml.h"
MimeHtml::MimeHtml(const QString &html) : MimeText(html)
{
this->cType = "text/html";
}
MimeHtml::~MimeHtml() {}
void MimeHtml::setHtml(const QString &html)
{
this->text = html;
}
const QString &MimeHtml::getHtml() const
{
return text;
}
void MimeHtml::prepare()
{
MimeText::prepare();
}