MailDlg.cpp
上传用户:rhhgjx
上传日期:2013-06-20
资源大小:36k
文件大小:9k
源码类别:

Email服务器

开发平台:

Visual C++

  1. // MailDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "Mail.h"
  5. #include "MailDlg.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CMailDlg dialog
  13. CMailDlg::CMailDlg(CWnd* pParent /*=NULL*/)
  14. : CDialog(CMailDlg::IDD, pParent)
  15. {
  16. //{{AFX_DATA_INIT(CMailDlg)
  17. m_Srvr = _T("");
  18. m_Port = 0;
  19. m_UserName = _T("");
  20. m_PassWord = _T("");
  21. m_MailFrom = _T("");
  22. m_RcptTo = _T("");
  23. m_Title = _T("");
  24. m_Content = _T("");
  25. //}}AFX_DATA_INIT
  26. // Note that LoadIcon does not require a subsequent DestroyIcon in Win32
  27. m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
  28. }
  29. void CMailDlg::DoDataExchange(CDataExchange* pDX)
  30. {
  31. CDialog::DoDataExchange(pDX);
  32. //{{AFX_DATA_MAP(CMailDlg)
  33. DDX_Control(pDX, IDC_BUTTON1, m_Button1);
  34. DDX_Control(pDX, IDC_LIST1, m_List1);
  35. DDX_Text(pDX, IDC_EDIT1, m_Srvr);
  36. DDX_Text(pDX, IDC_EDIT2, m_Port);
  37. DDX_Text(pDX, IDC_EDIT3, m_UserName);
  38. DDX_Text(pDX, IDC_EDIT4, m_PassWord);
  39. DDX_Text(pDX, IDC_EDIT5, m_MailFrom);
  40. DDX_Text(pDX, IDC_EDIT6, m_RcptTo);
  41. DDX_Text(pDX, IDC_EDIT7, m_Title);
  42. DDX_Text(pDX, IDC_EDIT8, m_Content);
  43. //}}AFX_DATA_MAP
  44. }
  45. BEGIN_MESSAGE_MAP(CMailDlg, CDialog)
  46. //{{AFX_MSG_MAP(CMailDlg)
  47. ON_WM_PAINT()
  48. ON_WM_QUERYDRAGICON()
  49. ON_BN_CLICKED(IDC_BUTTON1, OnButton1)
  50. //}}AFX_MSG_MAP
  51. END_MESSAGE_MAP()
  52. /////////////////////////////////////////////////////////////////////////////
  53. // CMailDlg message handlers
  54. BOOL CMailDlg::OnInitDialog()
  55. {
  56. CDialog::OnInitDialog();
  57. // Set the icon for this dialog.  The framework does this automatically
  58. //  when the application's main window is not a dialog
  59. SetIcon(m_hIcon, TRUE); // Set big icon
  60. SetIcon(m_hIcon, FALSE); // Set small icon
  61. // TODO: Add extra initialization here
  62. m_Srvr="smtp.X263.net";
  63. m_Port=25;
  64. m_UserName="Whg0001";
  65. m_MailFrom="Whg0001@263.net";
  66. m_RcptTo="Whg0001@263.net";
  67. m_Title="这里是邮件标题";
  68. m_Content="这里是邮件内容";
  69. m_List1.AddString("状态信息");
  70. UpdateData(false);
  71. if (HINSTANCE hLib=LoadLibrary("MyDll.Dll"))
  72. {
  73.     (FARPROC&)pAnsiToBase64=GetProcAddress(hLib,"AnsiToBase64");
  74. }
  75. else
  76. {
  77. AfxMessageBox("不能找到MyDll.DLL,内含Ansi到Base64代码转换程序");
  78. OnOK();
  79. }
  80. return TRUE;  // return TRUE  unless you set the focus to a control
  81. }
  82. // If you add a minimize button to your dialog, you will need the code below
  83. //  to draw the icon.  For MFC applications using the document/view model,
  84. //  this is automatically done for you by the framework.
  85. void CMailDlg::OnPaint() 
  86. {
  87. if (IsIconic())
  88. {
  89. CPaintDC dc(this); // device context for painting
  90. SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);
  91. // Center icon in client rectangle
  92. int cxIcon = GetSystemMetrics(SM_CXICON);
  93. int cyIcon = GetSystemMetrics(SM_CYICON);
  94. CRect rect;
  95. GetClientRect(&rect);
  96. int x = (rect.Width() - cxIcon + 1) / 2;
  97. int y = (rect.Height() - cyIcon + 1) / 2;
  98. // Draw the icon
  99. dc.DrawIcon(x, y, m_hIcon);
  100. }
  101. else
  102. {
  103. CDialog::OnPaint();
  104. }
  105. }
  106. // The system calls this to obtain the cursor to display while the user drags
  107. //  the minimized window.
  108. HCURSOR CMailDlg::OnQueryDragIcon()
  109. {
  110. return (HCURSOR) m_hIcon;
  111. }
  112. void CMailDlg::OnButton1() 
  113. {
  114. // TODO: Add your control notification handler code here
  115. m_Button1.EnableWindow(false);
  116. UpdateData();
  117. CSocket Sock;
  118. Sock.Create();
  119. CString Msg;
  120. Msg="***连接邮件服务器";
  121. m_List1.AddString(Msg);
  122. m_List1.SetCurSel(m_List1.GetCount()-1);
  123. if (Sock.Connect(m_Srvr,m_Port))
  124. {
  125. Sock.Receive(Msg.GetBuffer(0x100),0x100);
  126. m_List1.AddString(Msg);
  127. m_List1.SetCurSel(m_List1.GetCount()-1);
  128. Msg=Msg.GetBuffer(3);
  129. if (Msg.Left(3)!="220") 
  130. {
  131. m_List1.AddString("***邮件服务器忙");
  132. m_List1.SetCurSel(m_List1.GetCount()-1);
  133. Sock.Close();
  134. return;
  135. }
  136. //Send HELO;
  137. Msg="HELO "+m_Srvr+"rn";
  138. m_List1.AddString(Msg);
  139. m_List1.SetCurSel(m_List1.GetCount()-1);
  140. Sock.Send(Msg.GetBuffer(0x100),Msg.GetLength());
  141. Sock.Receive(Msg.GetBuffer(0x100),0x100);
  142. m_List1.AddString(Msg);
  143. m_List1.SetCurSel(m_List1.GetCount()-1);
  144. Msg=Msg.GetBuffer(3);
  145. if (Msg.Left(3)!="250") 
  146. {
  147. m_List1.AddString("***邮件服务器拒绝HELO");
  148. m_List1.SetCurSel(m_List1.GetCount()-1);
  149. Sock.Close();
  150. return;
  151. }
  152. //Send AUTH LOGIN;
  153. Msg="AUTH LOGINrn";
  154.     m_List1.AddString(Msg);
  155. m_List1.SetCurSel(m_List1.GetCount()-1);
  156.     Sock.Send(Msg.GetBuffer(0x100),Msg.GetLength());
  157. Sock.Receive(Msg.GetBuffer(0x100),0x100);
  158. m_List1.AddString(Msg);
  159. m_List1.SetCurSel(m_List1.GetCount()-1);
  160. Msg=Msg.GetBuffer(3);
  161. if (Msg.Left(3)!="334") 
  162. {
  163. m_List1.AddString("***邮件服务器不支持验证");
  164. m_List1.SetCurSel(m_List1.GetCount()-1);
  165. Sock.Close();
  166. return;
  167. }
  168. int nCX=this->pAnsiToBase64(Msg.GetBuffer(0x100),m_UserName.GetBuffer(0x100),m_UserName.GetLength());
  169. m_List1.AddString(Msg);
  170. m_List1.SetCurSel(m_List1.GetCount()-1);
  171. Sock.Send(Msg.GetBuffer(0x100),nCX);
  172. Msg="rn";
  173. Sock.Send(Msg.GetBuffer(0x100),2);
  174. Sock.Receive(Msg.GetBuffer(0x100),0x100);
  175. m_List1.AddString(Msg);
  176. m_List1.SetCurSel(m_List1.GetCount()-1);
  177. Msg=Msg.GetBuffer(3);
  178. if (Msg.Left(3)!="334") 
  179. {
  180. m_List1.AddString("***邮件服务器不支持验证");
  181. m_List1.SetCurSel(m_List1.GetCount()-1);
  182. Sock.Close();
  183. return;
  184. }
  185.         nCX=this->pAnsiToBase64(Msg.GetBuffer(0x100),m_PassWord.GetBuffer(0x100),m_PassWord.GetLength());
  186. m_List1.AddString(Msg);
  187. m_List1.SetCurSel(m_List1.GetCount()-1);
  188. Sock.Send(Msg.GetBuffer(0x100),nCX);
  189. Msg="rn";
  190. Sock.Send(Msg.GetBuffer(0x100),2);
  191. Sock.Receive(Msg.GetBuffer(0x100),0x100);
  192. m_List1.AddString(Msg);
  193. m_List1.SetCurSel(m_List1.GetCount()-1);
  194. Msg=Msg.GetBuffer(3);
  195. if (Msg.Left(3)!="235") 
  196. {
  197. m_List1.AddString("***验证失败");
  198. m_List1.SetCurSel(m_List1.GetCount()-1);
  199. Sock.Close();
  200. m_Button1.EnableWindow();
  201. return;
  202. }
  203. else
  204. {
  205. m_List1.AddString("***验证通过");
  206. m_List1.SetCurSel(m_List1.GetCount()-1);
  207. }
  208. //Send MAIL FROM;
  209. Msg="MAIL FROM: "+m_MailFrom+"rn";
  210.         m_List1.AddString(Msg);
  211. m_List1.SetCurSel(m_List1.GetCount()-1);
  212. Sock.Send(Msg.GetBuffer(0x100),Msg.GetLength());
  213. Sock.Receive(Msg.GetBuffer(0x100),0x100);
  214. m_List1.AddString(Msg);
  215. m_List1.SetCurSel(m_List1.GetCount()-1);
  216. Msg=Msg.GetBuffer(3);
  217. if (Msg.Left(3)!="250") 
  218. {
  219. m_List1.AddString("***服务器不接受源信箱地址");
  220. m_List1.SetCurSel(m_List1.GetCount()-1);
  221. Sock.Close();
  222. m_Button1.EnableWindow();
  223. return;
  224. }
  225. //Send RCPT TO;
  226. Msg="RCPT TO: "+m_RcptTo+"rn";
  227. m_List1.AddString(Msg);
  228. m_List1.SetCurSel(m_List1.GetCount()-1);
  229. Sock.Send(Msg.GetBuffer(0x100),Msg.GetLength());
  230. Sock.Receive(Msg.GetBuffer(0x100),0x100);
  231. m_List1.AddString(Msg);
  232. m_List1.SetCurSel(m_List1.GetCount()-1);
  233. Msg=Msg.GetBuffer(3);
  234. if (Msg.Left(3)!="250") 
  235. {
  236. m_List1.AddString("***服务器不接受目的信箱地址");
  237. m_List1.SetCurSel(m_List1.GetCount()-1);
  238. Sock.Close();
  239. m_Button1.EnableWindow();
  240. return;
  241. }
  242. //Send DATA;
  243. Msg="DATArn";
  244. m_List1.AddString(Msg);
  245. m_List1.SetCurSel(m_List1.GetCount()-1);
  246. Sock.Send(Msg.GetBuffer(0x100),Msg.GetLength());
  247. Sock.Receive(Msg.GetBuffer(0x100),0x100);
  248. m_List1.AddString(Msg);
  249. m_List1.SetCurSel(m_List1.GetCount()-1);
  250. Msg=Msg.GetBuffer(3);
  251. if (Msg.Left(3)!="354") 
  252. {
  253. m_List1.AddString("***服务器不能接受DATA命令");
  254. m_List1.SetCurSel(m_List1.GetCount()-1);
  255. Sock.Close();
  256. m_Button1.EnableWindow();
  257. return;
  258. }
  259. //Send FROM;
  260. Msg="FROM: "+m_MailFrom+"rn";
  261. m_List1.AddString(Msg);
  262. m_List1.SetCurSel(m_List1.GetCount()-1);
  263. Sock.Send(Msg.GetBuffer(0x100),Msg.GetLength());
  264. //Send TO;
  265. Msg="TO: "+m_RcptTo+"rn";
  266. m_List1.AddString(Msg);
  267. m_List1.SetCurSel(m_List1.GetCount()-1);
  268. Sock.Send(Msg.GetBuffer(0x100),Msg.GetLength());
  269. //Send SUBJECT;
  270. Msg="SUBJECT: "+m_Title+"rn";
  271. m_List1.AddString(Msg);
  272. m_List1.SetCurSel(m_List1.GetCount()-1);
  273. Sock.Send(Msg.GetBuffer(0x100),Msg.GetLength());
  274. //Send Content;
  275. Msg=m_Content+"rn";
  276. m_List1.AddString(Msg);
  277. m_List1.SetCurSel(m_List1.GetCount()-1);
  278. Sock.Send(Msg.GetBuffer(0x100),Msg.GetLength());
  279. //Send End;
  280. Msg=".rn";
  281. m_List1.AddString(Msg);
  282. m_List1.SetCurSel(m_List1.GetCount()-1);
  283. Sock.Send(Msg.GetBuffer(0x100),Msg.GetLength());
  284. Sock.Receive(Msg.GetBuffer(0x100),0x100);
  285. m_List1.AddString(Msg);
  286. m_List1.SetCurSel(m_List1.GetCount()-1);
  287. Msg=Msg.GetBuffer(3);
  288. if (Msg.Left(3)!="250") 
  289. {
  290. m_List1.AddString("***服务器不能接受邮件内容");
  291. m_List1.SetCurSel(m_List1.GetCount()-1);
  292. Sock.Close();
  293. m_Button1.EnableWindow();
  294. return;
  295. }
  296. //Send QUIT
  297. Msg="QUITrn";
  298. m_List1.AddString(Msg);
  299. m_List1.SetCurSel(m_List1.GetCount()-1);
  300. Sock.Send(Msg.GetBuffer(0x100),Msg.GetLength());
  301. Sock.Receive(Msg.GetBuffer(0x100),0x100);
  302. m_List1.AddString(Msg);
  303. m_List1.SetCurSel(m_List1.GetCount()-1);
  304. Msg=Msg.GetBuffer(3);
  305. if (Msg.Left(3)!="221") 
  306. {
  307. m_List1.AddString("***发送失败");
  308. m_List1.SetCurSel(m_List1.GetCount()-1);
  309. }
  310. else
  311. {
  312. m_List1.AddString("***发送成功");
  313. m_List1.SetCurSel(m_List1.GetCount()-1);
  314. }
  315. Sock.Close();
  316. }
  317. else
  318. {
  319. m_List1.AddString("***连接邮件服务器失败");
  320. m_List1.SetCurSel(m_List1.GetCount()-1);
  321. }
  322. m_Button1.EnableWindow();
  323. }