资源简介
Pop3邮件登陆(含SSL加密登陆)
代码中对邮件的分析是依据获取的内容进行分析的,不一定完全准确,在使用中请可能需要作出修改和调整。
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using UtilSp.ClassLib;
namespace Pop3Test
{
public partial class FormMail : Form
{
public FormMail()
{
InitializeComponent();
}
#region mail normal Property
private string mail_ = ““;
public string mail_pro
{
get
{
return mail_;
}
set
{
mail_ = value;
}
}
#endregion
private void FormMail_Load(object sender EventArgs e)
{
textBoxMail.Text = mail_pro;
}
private void saveToolStripMenuItem_Click(object sender EventArgs e)
{
string saveName = FileSp.getSaveDialogFileName(“Save“ “All Files|*.*|Email|*.eml“ 2);
if (string.IsNullOrEmpty(saveName))
{
return;
}
bool isSaveOK = FileSp.writeStringToFile(saveName textBoxMail.Text true);
if (isSaveOK)
{
MessageBox.Show(Tip.saveOK);
}
else
{
string failMessage = Tip.saveFail;
if (FileSp.exception_pro != null)
{
failMessage += FileSp.exception_pro.Message;
}
MessageBox.Show(failMessage);
}
}
private class Tip
{
public static string saveOK = “Save OK!“;
public static string saveFail = “Save Fail!“;
public static string copyOK = “Has copy to clipboard!“;
}
private void selectAllToolStripMenuItem_Click(object sender EventArgs e)
{
textBoxMail.SelectAll();
}
private void copyToolStripMenuItem_Click(object sender EventArgs e)
{
Clipboard.SetText(textBoxMail.SelectedText);
toolTipInfo.Show(Tip.copyOK textBoxMail);
}
}
}
相关资源
- 易语言GDI三角板源码
- c实现pop3接收邮件
- 国密文档合集大部分GMT系列
- openssl 手册中文版
- centos 7 openssh7.9p 201810月最新版,基于
- win64OpenSSL_Light
- 利用openssl和curl库获取https服务端证书
- linux c 使用openssl实现SHA1WithRSA实现,签
- openssl win7 64位
- indy10以上openssl支持所需要的文件。
- openssl098e-0.9.8e-17.el6.centos.src.rpm
- openssl-0.9.8k_WIN32.rar
- vs2010 win7下编译的openssl-1.0.2n静态库
- OpenSSL-1.0.2m静态库
- 基于OpenSSL库的ECDSA签名与验证和文档
- windows创建自签名SSL证书所需工具
- libcurl库支持ssl
- Apachehttpd-2.2.21-win32-x86-no_ssl.msi
- openssl-0.9.8k_WIN32(RSA密钥生成工具)
- httpd-2.2.22-win32-x86-no_ssl.msi
- OpenSSL-win64库使用依赖文件
- openssl.exe 0.9.8版本
- GMT 0024-2014 SSL xxx 技术规范.PDF
- windows64的curl库支持openssl)
- openssl(arm64armv7sarmv7x86_64i386)
- jclasslib5.2——64位
- openssl-1.0.2k
- openssl-1.0.2n.tar.gz
- apache-httpd-2.2.24-x64-openssl安装版 msi安装
- vs2013编译好的OpenSSL_1_0_2静态库和动态
评论
共有 条评论