C 傳送郵件

2021-06-25 11:02:13 字數 1222 閱讀 2696

/* 建立者:菜刀居士的部落格

* 建立日期: 2023年09月05號

* 功能:傳送郵件**/

///

/// 傳送郵件

///

public class sendmailhelper

//設定郵件的內容

mail.body = body.tostring();

//設定郵件的格式

mail.bodyencoding = system.text.encoding.utf8;

//是否為html格式

mail.isbodyhtml = true;

//設定郵件的傳送級別

mail.priority = mailpriority.high;

//設定附件

int f = lfile.count;

for (int j = 0; j < f; j++)

mail.deliverynotificationoptions = deliverynotificationoptions.onsuccess;

smtpclient client = new smtpclient();

//設定用於 smtp 事務的主機的名稱,填ip位址也可以了

client.host = "smtp.qq.com";

//設定用於 smtp 事務的埠,預設的是 25

client.port = 25;

client.usedefaultcredentials = false;

//這裡才是真正的郵箱登陸名和密碼,比如我的郵箱位址是

hbgx@hotmail

, 我的使用者名為 hbgx ,我的密碼是 xgbh

client.credentials = new system.net.networkcredential("

[email protected]

", "123456");

client.deliverymethod = smtpdeliverymethod.network;

client.send(mail);

system.console.writeline("傳送成功!");}

public void sendemail(string strsmtpserver, string strfrom, string strfrompwd, string strto, string strsubject, string strbody)}}

C 傳送郵件

今天俺學習c 傳送郵件的方法 在命名空間system.web.mail 傳送電子郵件主要用到了二個物件 乙個是mailmessage物件,此物件主要是封裝電子郵件的各個屬性,即所謂的發信人,收信人,信件的主題,信件的內容和信件的附件等。另外乙個是 tpmail物件,這個物件的最大作用是把已經定義好各...

C 傳送郵件

今天作乙個小專案,其中有個提醒功能,需要簡訊和郵件。因此查詢了一下c 傳送郵件,原來在學習計算機網路時了解到,其實就是實現 tp協議和pop3協議,但是自己有沒有伺服器,於是利用126的郵箱製作。如下 mailmessage message new mailmessage message.from ...

C 傳送郵件

using system using system.net.mail using system.net 說明 在.net2.0以上版本中傳送電子郵件的方法示例 用到的類主要位於system.net.mail和system.net命名空間下 日期 2008 08 08 傳送郵件 收件人郵件位址 發件人...