当前位置:网站首页>【博主推荐】C# Winform定时发送邮箱(附源码)
【博主推荐】C# Winform定时发送邮箱(附源码)
2022-07-06 09:13:00 【xcLeigh】
【博主推荐】C# Winform定时发送邮箱(附源码)
C# WinForm+Oracle+Email
1.支持对oracle数据定时查询,然后把查询结果发送邮箱;
2.灵活可配置,日志目录,数据库相关连接,展示的字段,展示的格式,发送的邮箱,表格的风格等;
3.可以在此基础上,支持扩展,定时查询数据(任何数据库),发送邮箱(短信);
窗体风格

1.支持最小化,关闭隐藏任务栏;
2.邮箱和数据库配置好了,开始线程,执行任务;
3.输出每次处理数据日志
- 窗体最小化

窗体代码
public ToDataEmail()
{
InitializeComponent();
//默认窗体最大化
//this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
SysFinalUtil.appLog = txtSysLog.Text + "log";
SysFinalUtil.appLog2 = txtSysLog.Text;
this.txtMess.Text = WriteFileUtil.ReadTxt();
}
#region 线程开始结束
private void btnStart_Click(object sender, EventArgs e)
{
//短信接收线程
WriteFileUtil.WriteFileLog("---------------------进入定时查询数据发送邮箱", "log");
EmailData sh = new EmailData();
EmailData.SysEmailName = txtSysEmailName.Text;
EmailData.SysEmailPass = txtSysEmailPass.Text;
EmailData.UserEmailName = txtUserEmailName.Text;
EmailData.SysEmailTitle = txtSysEmailTitle.Text;
EmailData.SysExecuteTime = int.Parse(txtSysExecuteTime.Text);
DBHelper.OracleDBHelper.linkConn = this.txtOracleLjc.Text;
EmailData.OracleSql = txtOracleSql.Text;
EmailData.OracleField = txtOracleField.Text;
EmailData.OracleFieldDetail = txtOracleFieldDetail.Text;
SysFinalUtil.appLog = txtSysLog.Text+"log";
SysFinalUtil.appLog2 = txtSysLog.Text;
string color = "1";
string style = "1";
if (rbColor1.Checked) { color = "1"; }
else if (rbColor2.Checked) { color = "2"; }
else if (rbColor3.Checked) { color = "3"; }
if (rbStyle1.Checked) { style = "1"; }
else if (rbStyle2.Checked) { style = "2"; }
EmailData.SysColor = color;
EmailData.SysStyle = style;
glo2.GlobalValue2.Email_RecvHandle = new Thread(sh.Rev_RunEmail);
glo2.GlobalValue2.Email_RecvHandle.Start();
this.btnClose.Enabled = true;
this.btnStart.Enabled = false;
}
private void btnClose_Click(object sender, EventArgs e)
{
glo2.GlobalValue2.Email_RecvHandle.Abort();
this.btnStart.Enabled = true;
this.btnClose.Enabled = false;
WriteFileUtil.WriteFileLog("---------------------关闭数据线程", "log");
}
#endregion
private void ToDataEmail_Load(object sender, EventArgs e)
{
if (glo2.GlobalValue2.Email_RecvHandle == null)
{
this.btnStart.Enabled = true;
this.btnClose.Enabled = false;
}
else
{
this.btnClose.Enabled = true;
this.btnStart.Enabled = false;
}
}
private void ToDataEmail_FormClosed(object sender, FormClosedEventArgs e)
{
this.WindowState = FormWindowState.Minimized;
this.Hide();
return;
}
private void ToDataEmail_FormClosing(object sender, FormClosingEventArgs e)
{
this.WindowState = FormWindowState.Minimized;
this.Hide();
e.Cancel = true;
return;
}
private void nfiLow_MouseDoubleClick(object sender, MouseEventArgs e)
{
this.Show();
//this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
}
private void tsmixcSharp_Click(object sender, EventArgs e)
{
Process.Start("https://blog.csdn.net/weixin_43151418");
}
private void tsmiShow_Click(object sender, EventArgs e)
{
this.Show();
//this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
}
private void tsmiVis_Click(object sender, EventArgs e)
{
this.Hide();
}
private void tsmiExit_Click(object sender, EventArgs e)
{
//WriteFileUtil.WriteFileLog("---------------------退出程序", "log");
nfiLow.Visible = false;
System.Environment.Exit(0);//所有线程退出
this.Close();
this.Dispose();
System.Windows.Forms.Application.Exit();
}
private void timer1_Tick(object sender, EventArgs e)
{
this.txtMess.Text = WriteFileUtil.ReadTxt();
}
private void tsmiTxtLoad_Click(object sender, EventArgs e)
{
this.txtMess.Text = WriteFileUtil.ReadTxt();
}
private void tsmiTxtClear_Click(object sender, EventArgs e)
{
if (WriteFileUtil.clearTxt())
{
//MessageBox.Show("清空完毕!");
this.txtMess.Text = WriteFileUtil.ReadTxt();
}
else
{
MessageBox.Show("清空异常!");
this.txtMess.Text = WriteFileUtil.ReadTxt();
}
}
运行文件

双击XcSharpApp.exe运行
源码地址
边栏推荐
- MySQL36-数据库备份与恢复
- A trip to Macao - > see the world from a non line city to Macao
- Windchill configure remote Oracle database connection
- Case identification based on pytoch pulmonary infection (using RESNET network structure)
- MySQL31-MySQL事务日志
- Just remember Balabala
- 保姆级手把手教你用C语言写三子棋
- 【C语言】深度剖析数据存储的底层原理
- 评估方法的优缺点
- MySQL18-MySQL8其它新特性
猜你喜欢

MySQL36-数据库备份与恢复

Mysql35 master slave replication

Mysql32 lock

Navicat 导出表生成PDM文件

A brief introduction to the microservice technology stack, the introduction and use of Eureka and ribbon

CSDN博文摘要(一) —— 一个简单的初版实现

【C语言】深度剖析数据存储的底层原理

MySQL27-索引优化与查询优化

Postman Interface Association
![[Li Kou 387] the first unique character in the string](/img/2d/f2c99549cac86c08efbfbd8ba76427.jpg)
[Li Kou 387] the first unique character in the string
随机推荐
Nanny hand-in-hand teaches you to write Gobang in C language
在jupyter NoteBook使用Pytorch进行MNIST实现
February 13, 2022-3-middle order traversal of binary tree
百度百科数据爬取及内容分类识别
Global and Chinese market of operational amplifier 2022-2028: Research Report on technology, participants, trends, market size and share
Postman environment variable settings
Win10: how to modify the priority of dual network cards?
Solve the problem that XML, YML and properties file configurations cannot be scanned
MySQL26-性能分析工具的使用
MySQL32-锁
API learning of OpenGL (2001) gltexgen
Valentine's Day is coming, are you still worried about eating dog food? Teach you to make a confession wall hand in hand. Express your love to the person you want
Breadth first search rotten orange
Time complexity (see which sentence is executed the most times)
[paper reading notes] - cryptographic analysis of short RSA secret exponents
Google login prompt error code 12501
Transactions have four characteristics?
Baidu Encyclopedia data crawling and content classification and recognition
MySQL35-主从复制
Just remember Balabala