程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> 使用.net(C#)發送郵件學習手冊(帶成功案例)

使用.net(C#)發送郵件學習手冊(帶成功案例)

編輯:C#入門知識

使用.net(C#)發送郵件學習手冊(帶成功案例) 
1.了解發送郵件的三種方式 
2.實例介紹使用client.DeliveryMethod = System.Net.Mail.SmtpDeliveryMethod.PickupDirectoryFromIis 
3.如何設定本機IIS的SMTP服務器 
1.了解發送郵件的三種方式 
第一:client.DeliveryMethod = System.Net.Mail.SmtpDeliveryMethod.Network; 
//通過遠程SMTP服務器傳送該郵件,這裡的network表示你要使用的遠程SMTP服務器。 
第二:client.DeliveryMethod = System.Net.Mail.SmtpDeliveryMethod.PickupDirectoryFromIis; 
//通過本機SMTP服務器傳送該郵件,這裡的PickupDirectoryFromIis表示你的郵件會通過本機IIS的SMTP服務器傳送你的郵件。所以如果使用該項一定要設定在SMTP服務器上設定好你要轉到的服務器的地址。下文會詳細介紹。 
第三:client.DeliveryMethod = System.Net.Mail.SmtpDeliveryMethod.SpecifiedPickupDirectory; 
//表示電子郵件會被復制到System.Net.Mail.SmtpDeliveryMethod.PickupDirectorylocation所指定的目錄中。以便有其他程序來執行發送該郵件。 

2.實例介紹使用client.DeliveryMethod = System.Net.Mail.SmtpDeliveryMethod.PickupDirectoryFromIis傳送郵件。
(1)mail.aspx的代碼如下(直接粘貼): 

Java代碼  收藏代碼
  1. <%@ Page Language="C#" AutoEventWireup="true" CodeFile="mail.aspx.cs" Inherits="mail" %>  
  2.   
  3. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">  
  4.   
  5. <html xmlns="http://www.w3.org/1999/xhtml" >  
  6. <head runat="server">  
  7.     <title>mail to users</title>  
  8. </head>  
  9. <body>  
  10.     <form id="form1" runat="server">  
  11.     <div>  
  12. <asp:Label ID="Label1" runat="server" Text="Label"></asp:Label>  
  13.     </div>  
  14.     </form>  
  15. </body>  
  16. </html>  


(2)mail.aspx.cs代碼如下: 
注意:一般公司 都是代理上網的。所以如果使用該項。只能發送內部網的郵件。 
但是並不是說該項不能發送外部網的郵件。而是代理封鎖的原因。 

Java代碼  收藏代碼
  1. using System;  
  2. using System.Data;  
  3. using System.Configuration;  
  4. using System.Collections;  
  5. using System.Web;  
  6. using System.Web.Security;  
  7. using System.Web.UI;  
  8. using System.Web.UI.WebControls;  
  9. using System.Web.UI.WebControls.WebParts;  
  10. using System.Web.UI.HtmlControls;  
  11. using System.Net;  
  12. using System.Net.Mail;  
  13. public partial class mail : System.Web.UI.Page  
  14. {  
  15.     protected void Page_Load(object sender, EventArgs e)  
  16.     {  
  17.         //SendMail(發件者, 收件者, 主旨, 內容, 主機,發件者昵稱, 密碼 ,附件)  
  18.         SendMail("[email protected]", "[email protected]", "主旨", "郵件內容測試", "exhj.yyhj.com.cn", "孫節", "yyhj", "");  
  19.     }  
  20.     public void SendMail(string send, string recieve, string subject, string mailbody, string host, string uname, string pwd, string strFileName)  
  21.     {  
  22.         //生成一個   使用SMTP發送郵件的客戶端對象  
  23.         System.Net.Mail.SmtpClient client = new System.Net.Mail.SmtpClient();  
  24.         //生成一個主機IP  
  25.         //client.Port = 25; //587, 465, 995  
  26.         client.Host = host;  
  27.   
  28.         //表示不以當前登錄用戶的默認憑據進行身份驗證  
  29.         client.UseDefaultCredentials =true ;  
  30.         //包含用戶名和密碼  
  31.         if (uname != "")  
  32.         {  
  33.             client.Credentials = new System.Net.NetworkCredential(uname, pwd);  
  34.         }  
  35.   
  36.         //指定如何發送電子郵件。  
  37.         client.DeliveryMethod = System.Net.Mail.SmtpDeliveryMethod.PickupDirectoryFromIis;  
  38.         //通過本機SMTP服務器傳送該郵件,  
  39.         //其實使用該項的話就可以隨意設定“主機,發件者昵稱, 密碼”,因為你的IIS服務器已經設定好了。而且公司內部發郵件是不需要驗證的。  
  40.   
  41.         System.Net.Mail.MailMessage message = new System.Net.Mail.MailMessage();  
  42.         message.To.Add(recieve);  
  43.         message.From = new System.Net.Mail.MailAddress(send, uname, System.Text.Encoding.UTF8);  
  44.         message.Subject = subject;  
  45.         message.Body = mailbody;  
  46.         //定義郵件正文,主題的編碼方式  
  47.         message.BodyEncoding = System.Text.Encoding.GetEncoding("UTF-8");  
  48.         message.SubjectEncoding = System.Text.Encoding.GetEncoding("UTF-8");  
  49.         //獲取或設置一個值,該值指示電子郵件正文是否為   HTML。  
  50.         message.IsBodyHtml = false;  
  51.         //指定郵件優先級  
  52.         message.Priority = System.Net.Mail.MailPriority.High;  
  53.         //添加附件  
  54.         //System.Net.Mail.Attachment data = new Attachment(@"E:\9527\tubu\PA260445.JPG", System.Net.Mime.MediaTypeNames.Application.Octet);  
  55.         if (strFileName != "" && strFileName != null)  
  56.         {  
  57.             Attachment data = new Attachment(strFileName);  
  58.             message.Attachments.Add(data);  
  59.         }  
  60.   
  61.         try  
  62.         {  
  63.             //發送  
  64.             client.Send(message);  
  65.            Label1.Text = "發送成功!";  
  66.         }  
  67.         catch (System.Net.Mail.SmtpException ex)  
  68.         {  
  69.             Label1.Text ="發送失敗:"+ ex.Message;  
  70.         }  
  71.     }  
  72.     }  


2.介紹使用client.DeliveryMethod = System.Net.Mail.SmtpDeliveryMethod.Network傳送郵件。 
使用該項的話。你的電腦首先必須是直接鏈接外網的。 
那就直接把mail.aspx.cs裡的client.DeliveryMethod = System.Net.Mail.SmtpDeliveryMethod.PickupDirectoryFromIis;換成client.DeliveryMethod = System.Net.Mail.SmtpDeliveryMethod.Network; 
然後要設定的就是 
//SendMail(發件者, 收件者, 主旨, 內容, 主機,發件者昵稱, 密碼 ,附件) 
SendMail("[email protected]", "[email protected]", "主旨", "12.37郵件內容", "smtp.163.com", "loeley", "81859505", ""); 
轉自:http://hi.baidu.com/lslyl/blog/item/ba67366ef4202ddd80cb4afa.html

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved