smtpDoc.h
资源名称:mysmtp2.rar [点击查看]
上传用户:young001
上传日期:2007-07-04
资源大小:33k
文件大小:2k
源码类别:
WEB邮件程序
开发平台:
Visual C++
- // smtpDoc.h : interface of the CSmtpDoc class
- //
- /////////////////////////////////////////////////////////////////////////////
- #if !defined(AFX_SMTPDOC_H__A0D4A064_65DE_11D2_9816_9523BDBAF506__INCLUDED_)
- #define AFX_SMTPDOC_H__A0D4A064_65DE_11D2_9816_9523BDBAF506__INCLUDED_
- #if _MSC_VER >= 1000
- #pragma once
- #endif // _MSC_VER >= 1000
- class CSmtpDoc : public CDocument
- {
- protected: // create from serialization only
- CSmtpDoc();
- DECLARE_DYNCREATE(CSmtpDoc)
- // Attributes
- public:
- // Operations
- public:
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CSmtpDoc)
- public:
- virtual BOOL OnNewDocument();
- virtual void Serialize(CArchive& ar);
- virtual void DeleteContents();
- //}}AFX_VIRTUAL
- // Implementation
- public:
- CString m_MailTo;
- virtual ~CSmtpDoc();
- #ifdef _DEBUG
- virtual void AssertValid() const;
- virtual void Dump(CDumpContext& dc) const;
- #endif
- protected:
- // Generated message map functions
- protected:
- CStringArray m_Files;
- CString m_User;
- CString m_Pass;
- CString m_Subject;
- CString m_From;
- CString m_SmtpServer;
- //{{AFX_MSG(CSmtpDoc)
- afx_msg void OnPreferencesSend();
- afx_msg void OnPreferencesSetup();
- afx_msg void OnPreferencesAttach();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
- /////////////////////////////////////////////////////////////////////////////
- //{{AFX_INSERT_LOCATION}}
- // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
- #endif // !defined(AFX_SMTPDOC_H__A0D4A064_65DE_11D2_9816_9523BDBAF506__INCLUDED_)