邮件发送 EMailHelper

引用:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Net.Mail;
using System.Text;

EMailHepler类:

public static class EmailHelper
    {
        /// <summary>
        /// C#发送邮件函数
        /// </summary>
        /// <param name="fromDisplayName">发件邮箱显示名</param>
        /// <param name="sto">收件邮箱</param>
        /// <param name="sSubject">主题</param>
        /// <param name="sBody">内容</param>
        /// <param name="sfiles">附件路径,绝对路径</param>
        /// <param name="ccto">抄送地址</param>
        /// <param name="isBodyHtml">邮件是否支持html格式</param>
        /// <returns></returns>
        public static bool Sendmail(string fromDisplayName, string sto, string sSubject, string sBody,
            string[] sfiles = null, string[] ccto = null, bool isBodyHtml = false)
        {
            ////设置from和to地址
            MailAddress from = new MailAddress(EmailSection.Instance.SMTPuser, fromDisplayName);
            MailAddress to = new MailAddress(sto);

            ////创建一个MailMessage对象
            MailMessage oMail = new MailMessage(from, to);

            //// 添加附件
            if (sfiles != null)
            {
                foreach (var item in sfiles)
                {
                    oMail.Attachments.Add(new Attachment(item));
                }
            }

            //添加抄送用户
            if (ccto != null)
            {
                foreach (var item in ccto)
                {
                    oMail.CC.Add(new MailAddress(item));
                }
            }
            ////邮件标题
            oMail.Subject = sSubject;

            ////邮件内容
            oMail.Body = sBody;

            ////邮件格式
            oMail.IsBodyHtml = isBodyHtml;

            ////邮件采用的编码
            oMail.BodyEncoding = System.Text.Encoding.GetEncoding("GB2312");

            ////设置邮件的优先级为高
            oMail.Priority = MailPriority.Normal;

            ////发送邮件
            SmtpClient client = new SmtpClient();
            ////client.UseDefaultCredentials = false;
            client.Host = EmailSection.Instance.SMTPHost;
            client.Credentials = new NetworkCredential(EmailSection.Instance.SMTPuser, EmailSection.Instance.SMTPpass);
            client.DeliveryMethod = SmtpDeliveryMethod.Network;
            try
            {
                client.Send(oMail);
                return true;
            }
            catch (Exception err)
            {
                Console.WriteLine(err.Message.ToString());
                return false;
            }
            finally
            {
                ////释放资源
                oMail.Dispose();
            }

        }
    }
EmailSection配置相关信息:
public class EmailSection : ConfigurationSection
    {
        private static EmailSection _instance = null;

        public static EmailSection Instance
        {
            get
            {
                if (_instance == null)
                {
                    _instance = (EmailSection)ConfigurationManager.GetSection(typeof(EmailSection).Name);
                }
                return _instance;
            }
        }
        [ConfigurationProperty("SMTPHost", IsRequired = true)]
        public string SMTPHost
        {
            get
            { return (String)this["SMTPHost"]; }
            set
            { this["SMTPHost"] = value; }
        }
        [ConfigurationProperty("SMTPuser", IsRequired = true)]
        public string SMTPuser
        {
            get
            { return (String)this["SMTPuser"]; }
            set
            { this["SMTPuser"] = value; }
        }
        [ConfigurationProperty("SMTPpass", IsRequired = true)]
        public string SMTPpass
        {
            get
            { return (String)this["SMTPpass"]; }
            set
            { this["SMTPpass"] = value; }
        }
    }

配置文件配置:

<EmailSection SMTPHost = "smtp.exmail.qq.com" SMTPuser = "[email protected]" SMTPpass = "laiyihuo_1"></EmailSection>
 
时间: 2024-10-29 00:03:52

邮件发送 EMailHelper的相关文章

学习笔记之邮件发送篇

用脚本语言发送邮件是系统管理员必备技能 对系统定期检查或者当服务器受到攻击时生成文档和报表. 发布这些文档最快速有效的方法就是发送邮件. python中email模块使得处理邮件变得比较简单 发送邮件主要用到了smtplib和email两个模块,这里首先就两个模块进行一下简单的介绍: 本段摘录于    http://www.cnblogs.com/xiaowuyi/archive/2012/03/17/2404015.html 1.smtplib模块 smtplib.SMTP([host[, p

java-基于JavaMail的Java邮件发送

1.基于JavaMail的Java邮件发送:简单邮件发送 2.基于JavaMail的Java邮件发送:复杂邮件发送

更改邮件发送语言为英语,解决编码为UTF8邮箱注册账号,邮件内容乱码问题

Change email English language, code for UTF8 mailbox registered account, email content garbled. 1. code analysis 乱码分析 通过对中文编码的邮件服务器使用原来的系统(GB2312) The original system used by the mail server encoding for the Chinese code (GB2312) 我使用outlook.com的邮箱(UT

redmine邮件发送功能配置详解

redmine的邮件发送功能还是很有用的. 像项目有更新啦,任务分配啦,都能邮件发送的相关责任人. 我自己在linux服务器上安装并启动了redmine后,邮件一直发送了不了. 查了网上的资料,都是讲修改下配置文件就可以了,他们没错,只是没有讲全. 下面是我整理的一个redmine邮件发送功能设置的一个完整流程. 1. sendmail安装与检查 linux机器上安装的redmine要能发送邮件,先得是本机的sendmail功能是正常的. 查看sendmail进程是否已正常启动: $ ps au

自动化邮件报告平台-邮件发送highchart图表

前段时间参与开发这样的一个系统,负责前端设计开发,使用人员提出需要在邮件发送的时候自动获取这些highchart图表数据,并显示在平台页面上,当发送邮件的时候也把图表附带在邮件中. highchart是一个比较强大的图表组件,这个图表组件以svg方式渲染在网页上,渲染完毕后会在网页中添加了svg元素,可以通过dom 或者jQuery 把svg内容单独抽取出来,此svg元素也能够在网页上直接显示,如下图所示.  但是,在邮箱环境下,这些svg元素不一定能展示在邮件里面,各种邮箱环境不同,在手机端邮

JavaMail 邮件发送之使用qq邮箱

所需jar包:comment-email.jar     mail.jaractivation.jar 一. 配置QQ邮箱的IMAP 进入qq电子邮件点击 设置->账户里开启 SMTP 服务(开启IMAP/SMTP服务)   注意:在启用QQ邮箱的14天之后才能开启此服务 开启之后会得到授权码,此授权码要记住或者保存到文本文件当中发送邮件的时候需要作为验证密码使用. 二.使用JavaMail发送一封简单邮件 的示例代码: public static void main(String[] args

全网备份中邮件发送的报错解决-20160926

第1章 邮件发送不成功解决方法: 1.1故障现象: [[email protected] scripts]# mail -s "Backup results_$(date+%F)" [email protected] </tmp/mail_$(date +%F).txt [[email protected] scripts]# smtp-server: 535 Error: authenticationfailed "/root/dead.letter" 13

用ASP.NET Core 1.0中实现邮件发送功能-阿里云邮件推送篇

在上篇中用MailKit实现了Asp.net core 邮件发送功能,但一直未解决阿里云邮件推送问题,提交工单一开始的回复不尽如人意,比如您的网络问题,您的用户名密码不正确等,但继续沟通下阿里云客户还是很耐心的. 最终结论,是由于MailKit发送了两次EHLO命令,查看了MailKit源码后竟然发现,里面写了硬编码: if (host != "smtp.strato.de" && host != "smtp.sina.com") Ehlo (can

通过邮件发送running process输出最后N行

#!/usr/bin/python #coding: utf-8 import sys import smtplib from email.mime.text import MIMEText import re,commands def lastline():     global pos     while True:         pos = pos - 1         try:             f.seek(pos, 2)             if f.read(1) =