使用aspx實現傳送email

2021-08-31 08:25:12 字數 1266 閱讀 4571

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.mail;

//using system.web.mail;

//using system.web.mail;

public partial class mail : system.web.ui.page

else

}///

/// 傳送電子郵件

///

/// 發件人郵箱位址

/// 收件人郵箱位址

/// 郵件主題

/// 郵件內容

///

public bool send(mailaddress messagefrom, string messageto, string messagesubject, string messagebody)

message.from = messagefrom;

message.to.add(messageto); //收件人郵箱位址可以是多個以實現**

message.subject = messagesubject;

message.body = messagebody;

message.isbodyhtml = false; //是否為html格式

message.priority = mailpriority.high; //傳送郵件的優先等級

smtpclient sc = new smtpclient();

sc.host = "smtp.163.com"; //指定傳送郵件的伺服器位址或ip

sc.port = 25; //指定傳送郵件埠

sc.credentials = new system.net.networkcredential("[email protected]", "***"); //指定登入伺服器的使用者名稱和密碼

trycatch

return true;}}

scrapy使用並傳送email

此處是講述如何用scrapy來傳送,那麼不管是何種語言或框架,它的過程都是類似於連線資料庫,需要乙個先構建乙個傳送器,通過對應的埠號,使用者名稱,密碼,以及傳送的文字或命令。當然傳送email此處變成了郵箱和密碼,增加了從哪來 from 到哪去 to 的過程.並以兩種方式來實現 上菜 兩種方式不論是...

C 的E mail傳送簡單實現

sendeeail.aspx page language c autoeventwireup true codefile sendeeail.aspx.cs inherits web test sendeeail sendeeail.aspx.cs using system using system...

使用vbs傳送email的模板

sub includefile fspec dim filesys,file,filedata set filesys createobject scripting.filesystemobject set file filesys.opentextfile fspec filedata file....