smtpDoc.h
上传用户:young001
上传日期:2007-07-04
资源大小:33k
文件大小:2k
源码类别:

WEB邮件程序

开发平台:

Visual C++

  1. // smtpDoc.h : interface of the CSmtpDoc class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_SMTPDOC_H__A0D4A064_65DE_11D2_9816_9523BDBAF506__INCLUDED_)
  5. #define AFX_SMTPDOC_H__A0D4A064_65DE_11D2_9816_9523BDBAF506__INCLUDED_
  6. #if _MSC_VER >= 1000
  7. #pragma once
  8. #endif // _MSC_VER >= 1000
  9. class CSmtpDoc : public CDocument
  10. {
  11. protected: // create from serialization only
  12. CSmtpDoc();
  13. DECLARE_DYNCREATE(CSmtpDoc)
  14. // Attributes
  15. public:
  16. // Operations
  17. public:
  18. // Overrides
  19. // ClassWizard generated virtual function overrides
  20. //{{AFX_VIRTUAL(CSmtpDoc)
  21. public:
  22. virtual BOOL OnNewDocument();
  23. virtual void Serialize(CArchive& ar);
  24. virtual void DeleteContents();
  25. //}}AFX_VIRTUAL
  26. // Implementation
  27. public:
  28. CString m_MailTo;
  29. virtual ~CSmtpDoc();
  30. #ifdef _DEBUG
  31. virtual void AssertValid() const;
  32. virtual void Dump(CDumpContext& dc) const;
  33. #endif
  34. protected:
  35. // Generated message map functions
  36. protected:
  37. CStringArray m_Files;
  38. CString m_User;
  39. CString m_Pass;
  40. CString m_Subject;
  41. CString m_From;
  42. CString m_SmtpServer;
  43. //{{AFX_MSG(CSmtpDoc)
  44. afx_msg void OnPreferencesSend();
  45. afx_msg void OnPreferencesSetup();
  46. afx_msg void OnPreferencesAttach();
  47. //}}AFX_MSG
  48. DECLARE_MESSAGE_MAP()
  49. };
  50. /////////////////////////////////////////////////////////////////////////////
  51. //{{AFX_INSERT_LOCATION}}
  52. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  53. #endif // !defined(AFX_SMTPDOC_H__A0D4A064_65DE_11D2_9816_9523BDBAF506__INCLUDED_)