彻底改版2.0
This commit is contained in:
23
tool/3rd_smtpclient/mimehtml.cpp
Normal file
23
tool/3rd_smtpclient/mimehtml.cpp
Normal file
@@ -0,0 +1,23 @@
|
||||
#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();
|
||||
}
|
||||
Reference in New Issue
Block a user