使用.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代碼
- <%@ Page Language="C#" AutoEventWireup="true" CodeFile="mail.aspx.cs" Inherits="mail" %>
-
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-
- <html xmlns="http://www.w3.org/1999/xhtml" >
- <head runat="server">
- <title>mail to users</title>
- </head>
- <body>
- <form id="form1" runat="server">
- <div>
- <asp:Label ID="Label1" runat="server" Text="Label"></asp:Label>
- </div>
- </form>
- </body>
- </html>
(2)mail.aspx.cs代碼如下:
注意:一般公司 都是代理上網的。所以如果使用該項。只能發送內部網的郵件。
但是並不是說該項不能發送外部網的郵件。而是代理封鎖的原因。
Java代碼
- using System;
- using System.Data;
- using System.Configuration;
- using System.Collections;
- using System.Web;
- using System.Web.Security;
- using System.Web.UI;
- using System.Web.UI.WebControls;
- using System.Web.UI.WebControls.WebParts;
- using System.Web.UI.HtmlControls;
- using System.Net;
- using System.Net.Mail;
- public partial class mail : System.Web.UI.Page
- {
- protected void Page_Load(object sender, EventArgs e)
- {
- //SendMail(發件者, 收件者, 主旨, 內容, 主機,發件者昵稱, 密碼 ,附件)
- SendMail("[email protected]", "[email protected]", "主旨", "郵件內容測試", "exhj.yyhj.com.cn", "孫節", "yyhj", "");
- }
- public void SendMail(string send, string recieve, string subject, string mailbody, string host, string uname, string pwd, string strFileName)
- {
- //生成一個 使用SMTP發送郵件的客戶端對象
- System.Net.Mail.SmtpClient client = new System.Net.Mail.SmtpClient();
- //生成一個主機IP
- //client.Port = 25; //587, 465, 995
- client.Host = host;
-
- //表示不以當前登錄用戶的默認憑據進行身份驗證
- client.UseDefaultCredentials =true ;
- //包含用戶名和密碼
- if (uname != "")
- {
- client.Credentials = new System.Net.NetworkCredential(uname, pwd);
- }
-
- //指定如何發送電子郵件。
- client.DeliveryMethod = System.Net.Mail.SmtpDeliveryMethod.PickupDirectoryFromIis;
- //通過本機SMTP服務器傳送該郵件,
- //其實使用該項的話就可以隨意設定“主機,發件者昵稱, 密碼”,因為你的IIS服務器已經設定好了。而且公司內部發郵件是不需要驗證的。
-
- System.Net.Mail.MailMessage message = new System.Net.Mail.MailMessage();
- message.To.Add(recieve);
- message.From = new System.Net.Mail.MailAddress(send, uname, System.Text.Encoding.UTF8);
- message.Subject = subject;
- message.Body = mailbody;
- //定義郵件正文,主題的編碼方式
- message.BodyEncoding = System.Text.Encoding.GetEncoding("UTF-8");
- message.SubjectEncoding = System.Text.Encoding.GetEncoding("UTF-8");
- //獲取或設置一個值,該值指示電子郵件正文是否為 HTML。
- message.IsBodyHtml = false;
- //指定郵件優先級
- message.Priority = System.Net.Mail.MailPriority.High;
- //添加附件
- //System.Net.Mail.Attachment data = new Attachment(@"E:\9527\tubu\PA260445.JPG", System.Net.Mime.MediaTypeNames.Application.Octet);
- if (strFileName != "" && strFileName != null)
- {
- Attachment data = new Attachment(strFileName);
- message.Attachments.Add(data);
- }
-
- try
- {
- //發送
- client.Send(message);
- Label1.Text = "發送成功!";
- }
- catch (System.Net.Mail.SmtpException ex)
- {
- Label1.Text ="發送失敗:"+ ex.Message;
- }
- }
- }
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