时间:2021-05-20
在MailSetting里的配置好邮件服务器,然后MailEntity里配置好要发送的邮件主体,最后使用MailServer里的方法Send发送邮件
MailEntity.cs
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; } }}以上所述就是本文的全部内容了,希望大家能够喜欢。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文实例讲述了C#使用自带的email组件发送邮件的方法。分享给大家供大家参考。具体实现方法如下:#region邮件发送//////发送邮件支持HTML格式先引
本文实例讲述了C#简单发送email的方法。分享给大家供大家参考。具体实现方法如下:#region邮件发送//////发送邮件支持HTML格式先引用System
本文实例讲述了C#实现异步发送邮件的方法。分享给大家供大家参考。具体如下:下面的代码可以实现异步发送邮件,等邮件发送出去后会自动调用回调函数,这样在发送邮件时就
本文实例讲述了C#发送内置图片html格式邮件的方法。分享给大家供大家参考。具体如下:下面的代码用于发送html格式的邮件,并且可以将图片附加到邮件一起发出Ma
本文实例讲述了C#实现按数据库邮件列表发送邮件的方法。分享给大家供大家参考。具体实现方法如下:usingSystem;usingSystem.Net;using