资源简介
在vs2005下c#实现邮件客户端 SMTP发信 POP3收信
通过access数据库 管理多个邮箱联系人 c#实现
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Text.Regularexpressions;
using System.Net;
using System.Net.Sockets;
using System.Net.Mail;
using System.IO;
using System.Windows.Forms;
using System.Data.OleDb;
using System.Security.Cryptography;
using System.IO;
using System.Diagnostics;
namespace SMTPPOP
{
public partial class Form1 : Form
{
private TcpClient tcpClient;
private NetworkStream networkStream;
private StreamReader sr;
private StreamWriter sw;
public Form1()
{
InitializeComponent();
}
#region 邮件发送端
private void tabPage_SMTP_Click(object sender EventArgs e)
{
}
private void textBox_smtp_yhm_TextChanged(object sender EventArgs e)
{
label_smtp_yhm.Visible = !Regex.IsMatch(textBox_smtp_yhm.Text @“\w+([-+.‘]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*$“);
}
private void textBox_smtp_sjr_TextChanged(object sender EventArgs e)
{
label_smtp_sjr.Visible = !Regex.IsMatch(textBox_smtp_sjr.Text @“\w+([-+.‘]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*$“);
}
private void textBox_smtp_mm_TextChanged(object sender EventArgs e)
{
label_smtp_mm.Visible = !Regex.IsMatch(textBox_smtp_mm.Text@“^\w{520}$“);
}
private void textBox_smtp_zt_TextChanged(object sender EventArgs e)
{
label_smtp_zt.Visible = !Regex.IsMatch(textBox_smtp_zt.Text@“^.{1}$“);
}
private void textBox_smtp_nr_TextChanged(object sender EventArgs e)
{
label_smtp_nr.Visible = !Regex.IsMatch(textBox_smtp_nr.Text @“^.{1}$“);
}
private void button_smtp_tjfj_Click(object sender EventArgs e)
{
OpenFileDialog myodig = new OpenFileDialog();
myodig.CheckFileExists = true;
myodig.CheckPathExists = true;
myodig.Multiselect = true;
myodig.ShowDialog();
if (myodig.FileNames.Length > 0)
{
listBox_smtp_fj.Items.AddRange(myodig.FileNames);
}
}
private void button_smtp_fs_Click(object sender EventArgs e)
{
String invalidString = ““;
if (label_smtp_yhm.Visible == true) invalidString += “用户名、“;
if (label_smtp_mm.Visible == true) invalidString += “密码、“;
if (label_smtp_sjr.Visible == true) invalidString += “收件人、“;
if (label_smtp_zt.Visible == true) invalidString += “主题、“;
if (label_smtp_nr.Visible == true) invalidString += “邮件内容、“;
if (invalidString.Length > 0)
{
MessageBox.Show(invalidString
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2010-11-05 23:13 SMTPPOPZZ\
目录 0 2010-10-31 22:02 SMTPPOPZZ\SMTPPOP\
目录 0 2010-10-30 07:55 SMTPPOPZZ\SMTPPOP\SMTPPOP\
目录 0 2010-11-05 23:15 SMTPPOPZZ\SMTPPOP\SMTPPOP\SMTPPOP\
文件 910 2010-10-30 07:55 SMTPPOPZZ\SMTPPOP\SMTPPOP\SMTPPOP.sln
文件 19968 2010-11-05 23:16 SMTPPOPZZ\SMTPPOP\SMTPPOP\SMTPPOP.suo
文件 395 2010-10-31 22:06 SMTPPOPZZ\SMTPPOP\SMTPPOP\SMTPPOP\app.config
目录 0 2010-10-31 22:06 SMTPPOPZZ\SMTPPOP\SMTPPOP\SMTPPOP\bin\
目录 0 2010-11-05 23:16 SMTPPOPZZ\SMTPPOP\SMTPPOP\SMTPPOP\bin\Debug\
文件 364544 2010-10-31 22:05 SMTPPOPZZ\SMTPPOP\SMTPPOP\SMTPPOP\bin\Debug\friend.mdb
文件 81920 2010-11-05 23:15 SMTPPOPZZ\SMTPPOP\SMTPPOP\SMTPPOP\bin\Debug\SMTPPOP.exe
文件 395 2010-10-31 22:06 SMTPPOPZZ\SMTPPOP\SMTPPOP\SMTPPOP\bin\Debug\SMTPPOP.exe.config
文件 112128 2010-11-05 23:15 SMTPPOPZZ\SMTPPOP\SMTPPOP\SMTPPOP\bin\Debug\SMTPPOP.pdb
文件 5632 2005-11-11 22:25 SMTPPOPZZ\SMTPPOP\SMTPPOP\SMTPPOP\bin\Debug\SMTPPOP.vshost.exe
文件 395 2010-10-31 22:06 SMTPPOPZZ\SMTPPOP\SMTPPOP\SMTPPOP\bin\Debug\SMTPPOP.vshost.exe.config
文件 22339 2010-11-05 23:15 SMTPPOPZZ\SMTPPOP\SMTPPOP\SMTPPOP\Form1.cs
文件 57335 2010-11-05 23:15 SMTPPOPZZ\SMTPPOP\SMTPPOP\SMTPPOP\Form1.Designer.cs
文件 6858 2010-11-05 23:15 SMTPPOPZZ\SMTPPOP\SMTPPOP\SMTPPOP\Form1.resx
文件 364544 2010-10-31 22:05 SMTPPOPZZ\SMTPPOP\SMTPPOP\SMTPPOP\friend.mdb
文件 78762 2010-10-31 22:06 SMTPPOPZZ\SMTPPOP\SMTPPOP\SMTPPOP\friendDataSet.Designer.cs
文件 3 2010-10-31 22:06 SMTPPOPZZ\SMTPPOP\SMTPPOP\SMTPPOP\friendDataSet.xsc
文件 17846 2010-10-31 22:06 SMTPPOPZZ\SMTPPOP\SMTPPOP\SMTPPOP\friendDataSet.xsd
文件 3 2010-10-31 22:06 SMTPPOPZZ\SMTPPOP\SMTPPOP\SMTPPOP\friendDataSet.xss
目录 0 2010-11-05 23:15 SMTPPOPZZ\SMTPPOP\SMTPPOP\SMTPPOP\obj\
目录 0 2010-11-05 23:15 SMTPPOPZZ\SMTPPOP\SMTPPOP\SMTPPOP\obj\Debug\
目录 0 2010-10-30 08:11 SMTPPOPZZ\SMTPPOP\SMTPPOP\SMTPPOP\obj\Debug\Refactor\
文件 898 2010-11-05 23:15 SMTPPOPZZ\SMTPPOP\SMTPPOP\SMTPPOP\obj\Debug\SMTPPOP.csproj.GenerateResource.Cache
文件 81920 2010-11-05 23:15 SMTPPOPZZ\SMTPPOP\SMTPPOP\SMTPPOP\obj\Debug\SMTPPOP.exe
文件 180 2010-11-05 23:15 SMTPPOPZZ\SMTPPOP\SMTPPOP\SMTPPOP\obj\Debug\SMTPPOP.Form1.resources
文件 112128 2010-11-05 23:15 SMTPPOPZZ\SMTPPOP\SMTPPOP\SMTPPOP\obj\Debug\SMTPPOP.pdb
文件 5633 2010-11-05 23:15 SMTPPOPZZ\SMTPPOP\SMTPPOP\SMTPPOP\obj\Debug\SMTPPOP.Properties.Resources.resources
............此处省略15个文件信息
相关资源
- C#实现的图像压缩,大小压缩+质量压
- C#最短路径算法源码
- C# 控制台贪吃蛇
- C#星号密码查看器
- winform C# 实现百度地图
- C#调用摄像头拍照录像保存
- 带进度条的C#软件启动特效,类似Wo
- MyIE_V1.0_最终版源代码
- C# 抓取数据
- 多窗口应用程序(C#源代码编写)
- C#词频统计
- c#基于颜色特征的求解两张图片的相似
- C# API 大全
- 用C#语言实现的教务管理系统
- C#制作IP地址控件(IP、子网掩码、网
- C#远程桌面实时监控源码
- 基于UDP的文件传输DEMOC#编程实现,可
- C# 画流程图49290
- C# lua库 支持中文函数名中文变量
- C#二维码生成及批量打印
- C#毕业设计管理系统带论文
- 自制C#财物管理系统
- C#获取微信小程序openid等用户信息(前
- CLR via C# 第4版.pdf
- c# 视频播放的分屏算法分享给大家
- C# 坐标正反算
- ArcGIS Mobile 开发 Visual Studio 2008 C#
- UDP异步通讯SocketAsyncEventArgs
- 台达PLC modbus通信上位机64位C#
- Tamir.SharpSS、访问sftp库
评论
共有 条评论