源码网商城,靠谱的源码在线交易网站 我的订单 购物车 帮助

源码网商城

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

  • 时间:2022-05-29 16:57 编辑: 来源: 阅读:
  • 扫一扫,手机访问
摘要:c#使用S22.Imap收剑灵激活码邮件代码示例(imap收邮件)
[u]复制代码[/u] 代码如下:
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();             }         }     } }
  • 全部评论(0)
联系客服
客服电话:
400-000-3129
微信版

扫一扫进微信版
返回顶部