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;
}
}
}
以上所述就是本文的全部?jī)?nèi)容了,希望大家能夠喜歡。
- c#調(diào)用qq郵箱smtp發(fā)送郵件修改版代碼分享
- c# 實(shí)現(xiàn)發(fā)送郵件的功能
- C# 服務(wù)器發(fā)送郵件失敗實(shí)例分析
- C# Email發(fā)送郵件 對(duì)方打開郵件可獲得提醒
- C# SendMail發(fā)送郵件功能實(shí)現(xiàn)
- C#使用windows服務(wù)發(fā)送郵件
- C#編程實(shí)現(xiàn)發(fā)送郵件的方法(可添加附件)
- C#使用自帶的email組件發(fā)送郵件的方法
- C#實(shí)現(xiàn)異步發(fā)送郵件的方法
- C#實(shí)現(xiàn)發(fā)送郵件的三種方法
- C# SMTP發(fā)送郵件的示例
相關(guān)文章
C#使用Tesseract進(jìn)行Ocr識(shí)別的方法實(shí)現(xiàn)
本文主要介紹了C#使用Tesseract進(jìn)行Ocr識(shí)別的方法實(shí)現(xiàn),文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2022-06-06
詳解C#把DataTable中數(shù)據(jù)一次插入數(shù)據(jù)庫的方法
本篇文章主要介紹了詳解C#把DataTable中數(shù)據(jù)一次插入數(shù)據(jù)庫的方法,具有一定的參考價(jià)值,有興趣的可以了解一下。2017-01-01
C#控制Excel Sheet使其自適應(yīng)頁寬與列寬的方法
這篇文章主要介紹了C#控制Excel Sheet使其自適應(yīng)頁寬與列寬的方法,涉及C#操作Excel的相關(guān)技巧,具有一定參考借鑒價(jià)值,需要的朋友可以參考下2016-06-06
C#連接db2數(shù)據(jù)庫的實(shí)現(xiàn)方法
本篇文章是對(duì)C#連接db2數(shù)據(jù)庫的方法進(jìn)行了詳細(xì)的分析介紹,需要的朋友參考下2013-05-05
C#使用Gembox.SpreadSheet向Excel寫入數(shù)據(jù)及圖表的實(shí)例
下面小編就為大家分享一篇C#使用Gembox.SpreadSheet向Excel寫入數(shù)據(jù)及圖表的實(shí)例,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。一起跟隨小編過來看看吧2017-12-12

