求一ASP.NET收发邮件的详细技术文章,谢谢!
可以是JMail的,或者别的。
XP中能设置POP3服务么?

解决方案 »

  1.   

    pop3收发邮件http://topic.csdn.net/u/20100110/14/2b2813b0-cba1-48f6-9013-e58bd3ef8652.html
      

  2.   

    http://hi.baidu.com/swebook/blog/item/e8a72d271891186b35a80f63.html代码我试过了,可以用。
      

  3.   

    http://www.cnblogs.com/czhenq/archive/2006/05/18/403640.html
      

  4.   

    如果是申请的免费邮箱,注意设置smtp开启
      

  5.   

    c#中邮件收发处理(POP3,IMAP,SMTP)
      

  6.   


    using System.Net.Mail;
    using System.Net;protected void Button1_Click1(object sender, EventArgs e)
      {
            MailMessage mailObj = new MailMessage();
            mailObj.From = new MailAddress("[email protected]");
             
           MailAttachment m= new  MailAttachment(this.TextBox1.Text);//附件
            Attachment m = new Attachment(this.TextBox1.Text);        mailObj.To.Add("[email protected]");
            mailObj.Subject = "asp.net 发送mail测试";
            
            mailObj.IsBodyHtml = true;//输出html
            mailObj.Body = "<a href=http://www.google.com>google.</a>";
           mailObj.Attachments.Add(m);//添加附件        SmtpClient smtp = new SmtpClient();
            smtp.Host = "smtp.163.com";
            smtp.UseDefaultCredentials = true;
            smtp.Credentials = new NetworkCredential("[email protected]", "pwd");
            smtp.Send(mailObj);
        }
      

  7.   


    这些收发邮件需要 安装或 配置些什么不,IIS?