新增邮件发送工具

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,22 @@
#ifndef MIMETEXT_H
#define MIMETEXT_H
#include "mimepart.h"
class MimeText : public MimePart
{
public:
MimeText(const QString &text = "");
~MimeText();
void setText(const QString &text);
const QString &getText() const;
protected:
QString text;
void prepare();
};
#endif // MIMETEXT_H