文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>VS.NET通过OUTLOOK发邮件

VS.NET通过OUTLOOK发邮件

时间:2010-08-27  来源:明月幾時有

using System.Data;using Microsoft.Office.Interop.Outlook;

//通過outlook發郵件
        public static void SendMailWithOutlook(string toEmail, string bodyEmail,string subjectEmail)
        {
            try
            {
                Microsoft.Office.Interop.Outlook.Application olapp = new Microsoft.Office.Interop.Outlook.Application();
                MailItem eMail = (MailItem)olapp.CreateItem(OlItemType.olMailItem);
                eMail.Subject = subjectEmail;
                eMail.To = toEmail;
                eMail.Importance = OlImportance.olImportanceHigh;
                eMail.BodyFormat = OlBodyFormat.olFormatHTML;
                eMail.Body = bodyEmail;
                eMail.HTMLBody = bodyEmail;
                eMail.Importance = OlImportance.olImportanceLow;
                ((_MailItem)eMail).Send();
            }
            catch
            {
                MessageBox.Show("郵件未能成功能發送,可能是OUTLOOK故障,\r\n請與管理員聯繫!", "MES系統", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
            }
        }

相关阅读 更多 +
排行榜 更多 +
盒子小镇2游戏手机版下载

盒子小镇2游戏手机版下载

冒险解谜 下载
世界盒子模组版下载最新版本

世界盒子模组版下载最新版本

模拟经营 下载
音乐搜索app最新版本下载

音乐搜索app最新版本下载

趣味娱乐 下载