新增邮件发送工具

This commit is contained in:
feiyangqingyun
2019-11-21 14:29:19 +08:00
parent 9da9db4d03
commit a9c472c1da
34 changed files with 2170 additions and 1 deletions

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