ZapMailDlg.cpp
上传用户:hsaozhenyu
上传日期:2007-01-03
资源大小:48k
文件大小:5k
源码类别:

Email客户端

开发平台:

Visual C++

  1. // ZapMailDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "ZapMail.h"
  5. #include "ZapMailDlg.h"
  6. #include "MailMessage.h"
  7. #include "SMTP.H"
  8. #ifdef _DEBUG
  9. #define new DEBUG_NEW
  10. #undef THIS_FILE
  11. static char THIS_FILE[] = __FILE__;
  12. #endif
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CAboutDlg dialog used for App About
  15. class CAboutDlg : public CDialog
  16. {
  17. public:
  18. CAboutDlg();
  19. // Dialog Data
  20. //{{AFX_DATA(CAboutDlg)
  21. enum { IDD = IDD_ABOUTBOX };
  22. //}}AFX_DATA
  23. // ClassWizard generated virtual function overrides
  24. //{{AFX_VIRTUAL(CAboutDlg)
  25. protected:
  26. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  27. //}}AFX_VIRTUAL
  28. // Implementation
  29. protected:
  30. //{{AFX_MSG(CAboutDlg)
  31. //}}AFX_MSG
  32. DECLARE_MESSAGE_MAP()
  33. };
  34. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  35. {
  36. //{{AFX_DATA_INIT(CAboutDlg)
  37. //}}AFX_DATA_INIT
  38. }
  39. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  40. {
  41. CDialog::DoDataExchange(pDX);
  42. //{{AFX_DATA_MAP(CAboutDlg)
  43. //}}AFX_DATA_MAP
  44. }
  45. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  46. //{{AFX_MSG_MAP(CAboutDlg)
  47. // No message handlers
  48. //}}AFX_MSG_MAP
  49. END_MESSAGE_MAP()
  50. /////////////////////////////////////////////////////////////////////////////
  51. // CZapMailDlg dialog
  52. CZapMailDlg::CZapMailDlg(CWnd* pParent /*=NULL*/)
  53. : CDialog(CZapMailDlg::IDD, pParent)
  54. {
  55. //{{AFX_DATA_INIT(CZapMailDlg)
  56. m_sBody = _T("");
  57. m_sFrom = _T("");
  58. m_sServer = _T("");
  59. m_sSubject = _T("");
  60. m_sTo = _T("");
  61. //}}AFX_DATA_INIT
  62. // Note that LoadIcon does not require a subsequent DestroyIcon in Win32
  63. m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
  64. }
  65. void CZapMailDlg::DoDataExchange(CDataExchange* pDX)
  66. {
  67. CDialog::DoDataExchange(pDX);
  68. //{{AFX_DATA_MAP(CZapMailDlg)
  69. DDX_Control(pDX, IDC_EDIT_TO, m_ctlTo);
  70. DDX_Text(pDX, IDC_EDIT_BODY, m_sBody);
  71. DDX_Text(pDX, IDC_EDIT_FROM, m_sFrom);
  72. DDX_Text(pDX, IDC_EDIT_SERVER, m_sServer);
  73. DDX_Text(pDX, IDC_EDIT_SUBJECT, m_sSubject);
  74. DDX_Text(pDX, IDC_EDIT_TO, m_sTo);
  75. //}}AFX_DATA_MAP
  76. }
  77. BEGIN_MESSAGE_MAP(CZapMailDlg, CDialog)
  78. //{{AFX_MSG_MAP(CZapMailDlg)
  79. ON_WM_SYSCOMMAND()
  80. ON_WM_PAINT()
  81. ON_WM_QUERYDRAGICON()
  82. ON_BN_CLICKED(IDSEND, OnSend)
  83. //}}AFX_MSG_MAP
  84. END_MESSAGE_MAP()
  85. /////////////////////////////////////////////////////////////////////////////
  86. // CZapMailDlg message handlers
  87. BOOL CZapMailDlg::OnInitDialog()
  88. {
  89. CDialog::OnInitDialog();
  90. // Add "About..." menu item to system menu.
  91. // IDM_ABOUTBOX must be in the system command range.
  92. ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX);
  93. ASSERT(IDM_ABOUTBOX < 0xF000);
  94. CMenu* pSysMenu = GetSystemMenu(FALSE);
  95. if (pSysMenu != NULL)
  96. {
  97. CString strAboutMenu;
  98. strAboutMenu.LoadString(IDS_ABOUTBOX);
  99. if (!strAboutMenu.IsEmpty())
  100. {
  101. pSysMenu->AppendMenu(MF_SEPARATOR);
  102. pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu);
  103. }
  104. }
  105. // Set the icon for this dialog.  The framework does this automatically
  106. //  when the application's main window is not a dialog
  107. SetIcon(m_hIcon, TRUE); // Set big icon
  108. SetIcon(m_hIcon, FALSE); // Set small icon
  109. // TODO: Add extra initialization here
  110. return TRUE;  // return TRUE  unless you set the focus to a control
  111. }
  112. void CZapMailDlg::OnSysCommand(UINT nID, LPARAM lParam)
  113. {
  114. if ((nID & 0xFFF0) == IDM_ABOUTBOX)
  115. {
  116. CAboutDlg dlgAbout;
  117. dlgAbout.DoModal();
  118. }
  119. else
  120. {
  121. CDialog::OnSysCommand(nID, lParam);
  122. }
  123. }
  124. // If you add a minimize button to your dialog, you will need the code below
  125. //  to draw the icon.  For MFC applications using the document/view model,
  126. //  this is automatically done for you by the framework.
  127. void CZapMailDlg::OnPaint() 
  128. {
  129. if (IsIconic())
  130. {
  131. CPaintDC dc(this); // device context for painting
  132. SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);
  133. // Center icon in client rectangle
  134. int cxIcon = GetSystemMetrics(SM_CXICON);
  135. int cyIcon = GetSystemMetrics(SM_CYICON);
  136. CRect rect;
  137. GetClientRect(&rect);
  138. int x = (rect.Width() - cxIcon + 1) / 2;
  139. int y = (rect.Height() - cyIcon + 1) / 2;
  140. // Draw the icon
  141. dc.DrawIcon(x, y, m_hIcon);
  142. }
  143. else
  144. {
  145. CDialog::OnPaint();
  146. }
  147. }
  148. // The system calls this to obtain the cursor to display while the user drags
  149. //  the minimized window.
  150. HCURSOR CZapMailDlg::OnQueryDragIcon()
  151. {
  152. return (HCURSOR) m_hIcon;
  153. }
  154. void CZapMailDlg::OnSend() 
  155. {
  156. // TODO: Add your control notification handler code here
  157. // That's a damn good idea.
  158. // I think I'll just go ahead and do that.
  159. UpdateData( TRUE );
  160. CSMTP smtp( m_sServer );
  161. CMailMessage msg;
  162. msg.m_sFrom = m_sFrom;
  163. msg.AddMultipleRecipients( m_sTo );
  164. msg.m_sSubject = m_sSubject;
  165. msg.m_sBody = m_sBody;
  166. if( !smtp.Connect() )
  167. {
  168. AfxMessageBox( smtp.GetLastError() );
  169. return;
  170. }
  171. if( !smtp.SendMessage( &msg ) )
  172. {
  173. AfxMessageBox( smtp.GetLastError() );
  174. return;
  175. }
  176. if( !smtp.Disconnect() )
  177. {
  178. AfxMessageBox( smtp.GetLastError() );
  179. return;
  180. }
  181. AfxMessageBox( _T( "Message Sent Successfully") );
  182. m_sTo = "";
  183. m_sSubject = "";
  184. m_sBody = "";
  185. UpdateData( FALSE );
  186. m_ctlTo.SetFocus();
  187. }