C#實現自動發郵件
出處:twanger.cublog.cn 作者:twanger 時間:2007-3-14 19:31:05
public void send(MailMsg msg, string[] attachments)
{
putlog("send:1");
MailMessage mail = new MailMessage();
mail.To = msg.MailTo;
mail.From = msg.MailFrom;
mail.Subject = msg.MailSubject;
mail.Body = msg.MailContent;
mail.BodyFormat = MailFormat.Html;
for (int i = 0; i {
putlog("send:1-" + (i + 1).ToString());
if (attachments[i] != null && attachments[i].ToString() != "")
{
putlog("send:1-" + (i + 1).ToString() + "-1");
MailAttachment attachment = new MailAttachment(attachments[i].ToString());
mail.Attachments.Add(attachment);
}
}
putlog("send:2");
//basic authentication
mail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate", "1");
//set your username here
mail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendusername", ConfigurationManager.AppSettings["UserName"]);
//set your password here
mail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendpassword", ConfigurationManager.AppSettings["UserPwd"]);
//ip of mail server
SmtpMail.SmtpServer = ConfigurationManager.AppSettings["mailServerIP"]; //"10.25.100.21"; //your real server goes here
SmtpMail.Send(mail);
}
相關文章
- oracle資料庫自動發郵件實現報警功能Oracle資料庫
- python自動發郵件Python
- JS實現發郵件功能JS
- ORACLE_自動發郵件程式碼Oracle
- ASP.NET自動傳送郵件功能的實現ASP.NET
- C#使用 MailKit 收發郵件C#AI
- Jenkins實現自動化郵件傳送踩坑記錄Jenkins
- PHP實現郵件群發機薦PHP
- SpringBoot+mail 輕鬆實現各類郵件自動推送Spring BootAI
- EM配置Oracle郵件自動告警Oracle
- Java實現QQ郵件傳送郵件工具類Java
- python實現自動監控網站併傳送郵件告警薦Python網站
- 【C#學習筆記】smtp發郵件C#筆記
- 前端高質量郵件信開發實現 ?前端
- 實現簡單的郵件收發器(十二)
- 【知識積累】JavaMail實現發郵件功能JavaAI
- 使用System.Net.Mail實現郵件群發AI
- 用 Python 指令碼實現電腦喚醒後自動拍照 截圖併發郵件通知Python指令碼
- Springboot 自動傳送郵件Spring Boot
- Python3實現自動傳送MySql查詢併傳送郵件PythonMySql
- Java 實現郵件的接收Java
- Java實現郵件推送功能Java
- 禪道開源版本12.4.1配置SMTP自動發郵件
- 郵件開發:接收解析郵件
- 『居善地』介面測試 — 9、介面自動化框架的傳送郵件實現框架
- py整合寶塔,flask已加入模組,無法實現自動傳送郵件功能Flask
- 使用C#傳送郵件C#
- oracle 傳送郵件 實現方法Oracle
- Django實現傳送郵件功能Django
- 用Perl實現郵件傳送
- python實現傳送郵件Python
- jquery 實現郵箱輸入自動提示功能jQuery
- 乾貨丨RPA郵件自動化技巧
- linux下設定郵件自動傳送Linux
- 群發郵件
- shell發郵件
- oracle 發郵件Oracle
- WireShark駭客發現之旅(7)—勒索郵件