重新改进支持Qt4.6-Qt6.1

This commit is contained in:
feiyangqingyun
2021-05-30 15:45:43 +08:00
parent 71acdd7151
commit b2ca4d05da
286 changed files with 2571 additions and 1965 deletions

21
3rd_smtpclient/mimehtml.h Normal file
View File

@@ -0,0 +1,21 @@
#ifndef MIMEHTML_H
#define MIMEHTML_H
#include "mimetext.h"
class MimeHtml : public MimeText
{
Q_OBJECT
public:
MimeHtml(const QString &html = "");
~MimeHtml();
void setHtml(const QString &html);
const QString &getHtml() const;
protected:
virtual void prepare();
};
#endif // MIMEHTML_H