C#拾遺之SmtpClient類

來源:互聯網
上載者:User
SmtpClient類

允許應用程式使用簡易郵件傳輸通訊協定 (SMTP) 寄送電子郵件。

命名空間:system.net.mail

屬性

ClientCertificates:指定應使用哪個認證來建立安全通訊端層(SSL)串連

Credentials:擷取或設定用來對寄件者進行身分識別驗證的憑證

DeliveryFormat:擷取或設定所使用的傳遞格式SmtpClient寄送電子郵件

DeliveryMethod:指定如何發送的電子郵件將處理訊息

EnableSsl:指定是否SmtpClient使用安全通訊端層(SSL)加密的串連

Host:擷取或設定一個或多個SMTP交易記錄所用的主機的IP地址

PickupDirectoryLocation:擷取或設定應用程式在其中儲存郵件以處理由本地SMTP伺服器的檔案夾

Port:擷取或設定用於SMTP事物的連接埠

ServicePoint:擷取用於傳輸電子郵件的網路連接

TargetName:擷取或設定服務提供者名稱(SPN)時使用擴充的保護用於進行身分識別驗證

Timeout:擷取或設定一個值,指定Send調用的逾時時間

UseDefaultCredentials:擷取或設定Boolean值,該值控制是否DefaultCredentials隨請求一起發送

方法

Dispose()

將一條QUIT訊息發送到SMTP伺服器、正常結束TCP串連,並釋放當前執行個體所使用的SmtpClient類的所有資源

Dispose(Boolean)

將一條QUIT訊息發送到SMTP伺服器、正常結束TCP串連時,釋放當前執行個體所使用的SmtpClient類的所有資源,並可根據需要釋放託管資源

Equals(Object)

確定指定的對象是否等於當前對象

Finalize()

在記憶體回收機制將回收某一對象前允許該對象嘗試釋放資源並執行其他清理操作

GetHashCode()

作為預設的雜湊函數

GetType()

擷取當前執行個體的Type

MemberwiseClone()

建立當前Object的淺表副本

OnSendCompleted(AsyncCompletedEventArgs)

引發SendComplete事件

Send(MailMessage)

將指定的訊息發送到SMTP伺服器以進行傳遞

Send(String, String, String, String)

將指定的電子郵件發送到SMTP伺服器進行傳遞。郵件寄件者、收件者、主題和訊息本文使用指定String對象

SendAsync(MailMessage, Object)

將指定的電子郵件發送到 SMTP 伺服器以進行傳遞。 此方法不會阻止調用線程,並允許調用方將對象傳遞給該操作完成時調用的方法

SendAsync(String, String, String, String, Object)

將一封電子郵件發送到 SMTP 伺服器以進行傳遞。 郵件寄件者、 收件者、 主題和訊息本文使用指定 String 對象。 此方法不會阻止調用線程,並允許調用方將對象傳遞給該操作完成時調用的方法。

SendAsyncCancel()

取消非同步作業以寄送電子郵件

SendMailAsync(MailMessage)

將指定的訊息發送到 SMTP 伺服器以進行非同步作業的形式傳遞。

SendMailAsync(String, String, String, String)

將指定的訊息發送到 SMTP 伺服器以便以非同步作業的形式交付。 。 郵件寄件者、 收件者、 主題和訊息本文使用指定 String 對象。

ToString()

返回表示當前對象的字串。(繼承自 Object。)

事件

SendCompleted

當非同步電子郵件發送操作完成時發生

備忘

下表中所示的類用於構建使用可發送的電子郵件 SmtpClient。

Attachment類

表示檔案附件,此類允許您將檔案、流、或文本附加到電子郵件

MailAddress類

表示寄件者和收件者的電子郵件地址

MailMessage類

表示一封電子郵件

構造並發送一封電子郵件使用 SmtpClient, ,您必須指定以下資訊︰

用於寄送電子郵件的 SMTP 主機伺服器。

對於身分識別驗證,如果 SMTP 伺服器所需的憑據。

寄件者電子郵件地址。

電子郵件地址或收件者的地址。

訊息內容。

若要包括使用電子郵件附件,首先建立附件使用 Attachment 類,然後再添加到訊息通過 MailMessage.Attachments 屬性。 具體取決於使用收件者和附件的檔案類型的電子郵件的讀取器的情況下,某些收件者不可能能夠讀取附件。 對於不能保持其原始格式顯示的附件的用戶端,您可以通過指定替代視圖 MailMessage.AlternateViews 屬性。

可以使用該應用程式或電腦設定檔來指定用於所有的預設主控件、 連接埠和憑據值 SmtpClient 對象。

若要在等待傳輸到 SMTP 伺服器的電子郵件時寄送電子郵件和塊,使用一個同步 Send 方法。 若要允許程式的主線程繼續執行傳輸電子郵件時,使用非同步之一 SendAsync 方法。 SendCompleted 引發事件時 SendAsync 操作完成。 若要接收此事件,必須添加 SendCompletedEventHandler 委託給 SendCompleted。 SendCompletedEventHandler 委託必須引用的回調方法,用於處理通知的 SendCompleted 事件。 若要取消非同步電子郵件傳輸,使用 SendAsyncCancel 方法。

郵件發送介面主要代碼:

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 System.IO;using System.Net;using System.Net.Mail;namespace SendEmail{public partial class Form3 : Form{string severaddress;string mailuser;string userpwd;public Form3(){InitializeComponent();}private void button1_Click(object sender, EventArgs e){Form6 form = new Form6();form.SendParaHandler +=new Form6.SendPara(reload);//事件的掛接form.Show();}public void reload(){StreamReader read = new StreamReader(@"fajianren.asdf");severaddress = read.ReadLine();mailuser = read.ReadLine();userpwd = read.ReadLine();read.Close();}private void Form3_Load(object sender, EventArgs e){reload();}public bool sendmail(string mailfrom,string mailto,string mailsubject,string mailbody){MailAddress from = new MailAddress(mailfrom);MailMessage message = new MailMessage();try{message.From = from;message.To.Add(mailto);message.Subject = mailsubject;message.Body = mailbody;message.Priority = MailPriority.Normal;SmtpClient smtp = new SmtpClient();smtp.Host = severaddress;smtp.UseDefaultCredentials = false;smtp.EnableSsl = true;smtp.Credentials = new NetworkCredential(mailuser,userpwd);smtp.DeliveryMethod = SmtpDeliveryMethod.Network;smtp.Send(message);}catch(Exception e){ return false;}return true;}private void button2_Click(object sender, EventArgs e){string mailfrom = mailuser;string mailto = textBox1.Text;string mailsubject = textBox2.Text;string mailbody = textBox3.Text;if (sendmail(mailfrom, mailto, mailsubject, mailbody)){MessageBox.Show("郵件發送成功");}else{MessageBox.Show("郵件發送失敗");}}}}

設定寄件者資訊介面主要代碼:

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 System.IO;namespace SendEmail{public partial class Form6 : Form{public Form6(){InitializeComponent();}private void button1_Click(object sender, EventArgs e){Write();}//載入資訊private void Form6_Load(object sender, EventArgs e){StreamReader read = new StreamReader(@"fajianren.asdf");textBox1.Text = read.ReadLine();textBox2.Text = read.ReadLine();textBox3.Text = read.ReadLine();read.Close();}//寫入資訊public void Write(){StreamWriter write = new StreamWriter(@"fajianren.asdf");write.WriteLine(textBox1.Text);write.WriteLine(textBox2.Text);write.WriteLine(textBox3.Text);write.Close();}public delegate void SendPara();//定義委託public event SendPara SendParaHandler;//定義事件private void button2_Click(object sender, EventArgs e){SendParaHandler.Invoke();Write();this.Close();}}}

以上就是C#拾遺之SmtpClient類的內容,更多相關內容請關注topic.alibabacloud.com(www.php.cn)!

  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.