C#編寫發(fā)送郵件組件
更新時間:2015年06月17日 11:42:27 投稿:hebedich
本文給大家分享的是使用C#編寫的發(fā)送郵件的組件,非常的簡單實用,有需要的小伙伴可以參考下。
在MailSetting里的配置好郵件服務(wù)器,然后MailEntity里配置好要發(fā)送的郵件主體,最后使用MailServer里的方法Send發(fā)送郵件
MailEntity.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace AutoOutTicket.Mail
{
public class MailEntity
{
public string from;
public string to;
public string fromName;
public string toName;
public string cc;
public bool isHtml;
public string subject;
public string body;
public string attach;
}
}
MailServer.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Net.Mail;
using System.Web;
namespace AutoOutTicket.Mail
{
public class MailServer
{
MailEntity _entity = null;
MailSetting _settings = null;
public MailServer(MailEntity entity, MailSetting settings)
{
this._entity = entity;
this._settings = settings;
}
public bool Send()
{
try
{
MailMessage message = new MailMessage(_settings.smtpUser, _entity.to);
message.IsBodyHtml = _entity.isHtml;
message.Subject = _entity.subject;
message.Body = _entity.body;
if (!string.IsNullOrWhiteSpace(_entity.cc))
{
message.CC.Add(_entity.cc);
}
if (!string.IsNullOrWhiteSpace(_entity.attach))
{
Attachment atta=new Attachment(_entity.attach);
message.Attachments.Add(atta);
}
SmtpClient client = new SmtpClient(_settings.smtpHost, _settings.smtpPort);
client.Credentials = new NetworkCredential(_settings.smtpUser, _settings.smtpPass);
client.SendAsync(message, null);
return true;
}
catch (Exception)
{
}
return false;
}
}
}
MailSetting.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace AutoOutTicket.Mail
{
public class MailSetting
{
public string smtpHost = "";
public int smtpPort;
public string smtpUser = "";
public string smtpPass = "";
public MailSetting()
{
}
public MailSetting(string smtpServer, int smtpPort, string smtpUser, string smtpPass)
{
this.smtpHost = smtpServer;
this.smtpPort = smtpPort;
this.smtpUser = smtpUser;
this.smtpPass = smtpPass;
}
}
}
以上所述就是本文的全部內(nèi)容了,希望大家能夠喜歡。
相關(guān)文章
C#使用Tesseract進行Ocr識別的方法實現(xiàn)
本文主要介紹了C#使用Tesseract進行Ocr識別的方法實現(xiàn),文中通過示例代碼介紹的非常詳細,對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2022-06-06
詳解C#把DataTable中數(shù)據(jù)一次插入數(shù)據(jù)庫的方法
本篇文章主要介紹了詳解C#把DataTable中數(shù)據(jù)一次插入數(shù)據(jù)庫的方法,具有一定的參考價值,有興趣的可以了解一下。2017-01-01
C#控制Excel Sheet使其自適應(yīng)頁寬與列寬的方法
這篇文章主要介紹了C#控制Excel Sheet使其自適應(yīng)頁寬與列寬的方法,涉及C#操作Excel的相關(guān)技巧,具有一定參考借鑒價值,需要的朋友可以參考下2016-06-06
C#連接db2數(shù)據(jù)庫的實現(xiàn)方法
本篇文章是對C#連接db2數(shù)據(jù)庫的方法進行了詳細的分析介紹,需要的朋友參考下2013-05-05
C#使用Gembox.SpreadSheet向Excel寫入數(shù)據(jù)及圖表的實例
下面小編就為大家分享一篇C#使用Gembox.SpreadSheet向Excel寫入數(shù)據(jù)及圖表的實例,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧2017-12-12

