c#使用S22.Imap收剑灵激活码邮件代码示例(imap收邮件)

所属分类: 软件编程 / C#教程 阅读数: 69
收藏 0 赞 0 分享

复制代码 代码如下:

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 S22.Imap;

namespace _163pop3
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {

        }
        /*
 * 
 *  By im0khu 
 *  C#利用IMAP收邮件
 */
        private void btnFetch_Click(object sender, EventArgs e)
        {

            string ImapServer = "imap.163.com";
            string ImapUserame = "xiagegou_com";
            string ImapPwd = "password2013";
            ImapClient imap = new ImapClient(ImapServer, 993, true);

            try
            {
                imap.Login(ImapUserame, ImapPwd, AuthMethod.Login);
                uint[] uids = imap.Search(SearchCondition.Subject("This's a test email"));
               // uint[] uids = imap.Search(SearchCondition.From("ssss@oschina.net"));
      // 也可以使用通过其它条件进行检索你的邮件
               if (uids.Length > 0)
                {
                    System.Net.Mail.MailMessage msg = imap.GetMessage(uids[0]);
                    emailLst.Items.Add("Subject: " + msg.Subject);
                    emailBody.Text = msg.Body;                  

                }
                else
                {
                    emailLst.Items.Add("没有你要找的邮件");
                }
                imap.Dispose();

            }
            catch (InvalidCredentialsException)
            {
                MessageBox.Show("服务器拒绝连接,可能密码错误!");
                imap.Dispose();
            }
        }
    }
}

更多精彩内容其他人还在看

C# SendInput 模拟鼠标操作的实现方法

C# SendInput 模拟鼠标操作的实现方法,需要的朋友可以参考一下
收藏 0 赞 0 分享

C#中 paint()与Onpaint()的区别

paint是事件onpaint方法onpaint方法是调用paint事件的,用哪一个,效果是一样,就看那一个方便了内部是这样实现的:
收藏 0 赞 0 分享

c#中GetType()与Typeof()的区别

c#中GetType()与Typeof()的区别,需要的朋友可以参考一下
收藏 0 赞 0 分享

将字符串转换成System.Drawing.Color类型的方法

将字符串转换成System.Drawing.Color类型的方法,需要的朋友可以参考一下
收藏 0 赞 0 分享

C# 抓取网页内容的方法

C# 抓取网页内容的方法,需要的朋友可以参考一下
收藏 0 赞 0 分享

基于C#后台调用跨域MVC服务及带Cookie验证的实现

本篇文章介绍了,基于C#后台调用跨域MVC服务及带Cookie验证的实现。需要的朋友参考下
收藏 0 赞 0 分享

使用C#获取远程图片 Form用户名与密码Authorization认证的实现

本篇文章介绍了,使用C#获取远程图片 Form用户名与密码Authorization认证的实现。需要的朋友参考下
收藏 0 赞 0 分享

Winform跨线程操作的简单方法

线程间操作无效:从不是创建控件“label1”的线程访问它
收藏 0 赞 0 分享

C# WINFORM 强制让窗体获得焦点的方法代码

C# WINFORM 强制让窗体获得焦点的方法代码,需要的朋友可以参考一下
收藏 0 赞 0 分享

C#中方括号[]的语法及作用介绍

C#中方括号[]可用于数组,索引、属性,更重要的是用于外部DLL类库的引用。
收藏 0 赞 0 分享
查看更多