ZapMailDlg.cpp
上传用户:xmpantheon
上传日期:2016-10-20
资源大小:7502k
文件大小:6k
源码类别:

Email服务器

开发平台:

Visual C++

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