SendEmail.cpp
上传用户:jpdph_love
上传日期:2013-04-11
资源大小:116k
文件大小:3k
源码类别:

Email服务器

开发平台:

Visual C++

  1. // SendEmail.cpp : Defines the class behaviors for the application.
  2. //
  3. #include "stdafx.h"
  4. #include "SendEmail.h"
  5. #include "MainFrm.h"
  6. #include "SendEmailDoc.h"
  7. #include "SendEmailView.h"
  8. #ifdef _DEBUG
  9. #define new DEBUG_NEW
  10. #undef THIS_FILE
  11. static char THIS_FILE[] = __FILE__;
  12. #endif
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CSendEmailApp
  15. BEGIN_MESSAGE_MAP(CSendEmailApp, CWinApp)
  16. //{{AFX_MSG_MAP(CSendEmailApp)
  17. ON_COMMAND(ID_APP_ABOUT, OnAppAbout)
  18. //}}AFX_MSG_MAP
  19. // Standard file based document commands
  20. ON_COMMAND(ID_FILE_NEW, CWinApp::OnFileNew)
  21. ON_COMMAND(ID_FILE_OPEN, CWinApp::OnFileOpen)
  22. END_MESSAGE_MAP()
  23. /////////////////////////////////////////////////////////////////////////////
  24. // CSendEmailApp construction
  25. CSendEmailApp::CSendEmailApp()
  26. {
  27. }
  28. /////////////////////////////////////////////////////////////////////////////
  29. // The one and only CSendEmailApp object
  30. CSendEmailApp theApp;
  31. /////////////////////////////////////////////////////////////////////////////
  32. // CSendEmailApp initialization
  33. BOOL CSendEmailApp::InitInstance()
  34. {
  35. if (!AfxSocketInit())
  36. {
  37. AfxMessageBox(IDP_SOCKETS_INIT_FAILED);
  38. return FALSE;
  39. }
  40. // Standard initialization
  41. #ifdef _AFXDLL
  42. Enable3dControls(); // Call this when using MFC in a shared DLL
  43. #else
  44. Enable3dControlsStatic(); // Call this when linking to MFC statically
  45. #endif
  46. // Change the registry key under which our settings are stored.
  47. SetRegistryKey(_T("Local AppWizard-Generated Applications"));
  48. LoadStdProfileSettings();  // Load standard INI file options (including MRU)
  49. // Register document templates
  50. CSingleDocTemplate* pDocTemplate;
  51. pDocTemplate = new CSingleDocTemplate(
  52. IDR_MAINFRAME,
  53. RUNTIME_CLASS(CSendEmailDoc),
  54. RUNTIME_CLASS(CMainFrame),       // main SDI frame window
  55. RUNTIME_CLASS(CSendEmailView));
  56. AddDocTemplate(pDocTemplate);
  57. // Parse command line for standard shell commands, DDE, file open
  58. CCommandLineInfo cmdInfo;
  59. ParseCommandLine(cmdInfo);
  60. // Dispatch commands specified on the command line
  61. if (!ProcessShellCommand(cmdInfo))
  62. return FALSE;
  63. m_pMainWnd->ShowWindow(SW_SHOW);
  64. m_pMainWnd->UpdateWindow();
  65. return TRUE;
  66. }
  67. /////////////////////////////////////////////////////////////////////////////
  68. // CAboutDlg dialog used for App About
  69. class CAboutDlg : public CDialog
  70. {
  71. public:
  72. CAboutDlg();
  73. // Dialog Data
  74. //{{AFX_DATA(CAboutDlg)
  75. enum { IDD = IDD_ABOUTBOX };
  76. //}}AFX_DATA
  77. // ClassWizard generated virtual function overrides
  78. //{{AFX_VIRTUAL(CAboutDlg)
  79. protected:
  80. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  81. //}}AFX_VIRTUAL
  82. // Implementation
  83. protected:
  84. //{{AFX_MSG(CAboutDlg)
  85. // No message handlers
  86. //}}AFX_MSG
  87. DECLARE_MESSAGE_MAP()
  88. };
  89. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  90. {
  91. //{{AFX_DATA_INIT(CAboutDlg)
  92. //}}AFX_DATA_INIT
  93. }
  94. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  95. {
  96. CDialog::DoDataExchange(pDX);
  97. //{{AFX_DATA_MAP(CAboutDlg)
  98. //}}AFX_DATA_MAP
  99. }
  100. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  101. //{{AFX_MSG_MAP(CAboutDlg)
  102. // No message handlers
  103. //}}AFX_MSG_MAP
  104. END_MESSAGE_MAP()
  105. // App command to run the dialog
  106. void CSendEmailApp::OnAppAbout()
  107. {
  108. CAboutDlg aboutDlg;
  109. aboutDlg.DoModal();
  110. }
  111. /////////////////////////////////////////////////////////////////////////////
  112. // CSendEmailApp commands