zoukankan      html  css  js  c++  java
  • 收到邮件且自动发送到对方提供的邮箱

    终于出结果啦,下面是程序

    using System;
    using System.Collections.Generic;
    using System.Text;
    using Microsoft.Office.Interop.Outlook;
    using System.Net.Mail;


    namespace dgx
    {
        class program
        {
            static string strHost = string.Empty;
            static string strAccount = string.Empty;
            static string strPwd = string.Empty;
            static string strFrom = string.Empty;

            static void Main()
            {
               
                ApplicationClass OutLookApp = new ApplicationClass();
                OutLookApp.NewMailEx += new ApplicationEvents_11_NewMailExEventHandler(OutLookApp_NewMailEx);
                Console.ReadLine();
            }

            static void OutLookApp_NewMailEx(string EntryIDCollection)
            {
                string y="";

                ApplicationClass d = new ApplicationClass();
                NameSpace outlookns = d.GetNamespace("MAPI");
                MAPIFolder mFolder = d.Session.GetDefaultFolder(OlDefaultFolders.olFolderInbox);
                MailItem newmail = (MailItem)outlookns.GetItemFromID(EntryIDCollection, mFolder.StoreID);                      
              
                string[] split = newmail.Body.Split(new char[] { ',' });           
                char[] dg = split [0].ToCharArray();
                Array.Reverse(dg);
              
                foreach (char dx in dg)
                {               
                  y+=dx;         
                }
               
                strHost = "mail.zhuangxiang.com";   //STMP服务器地址
                strAccount = "dengguoxing@zhuangxiang.com";       //SMTP服务帐号
                strPwd = "dengguoxing";       //SMTP服务密码
                strFrom = "dengguoxing@zhuangxiang.com";  //发送方邮件地址

                sendMail(newmail.Subject, "装箱大师授权文件",y );
               
            }


            static bool sendMail(string to, string title, string content)
            {
                SmtpClient _smtpClient = new SmtpClient();
                _smtpClient.DeliveryMethod = SmtpDeliveryMethod.Network;//指定电子邮件发送方式
                _smtpClient.Host = strHost; ;//指定SMTP服务器
                _smtpClient.Credentials = new System.Net.NetworkCredential(strAccount, strPwd);//用户名和密码

                MailMessage _mailMessage = new MailMessage(strFrom, to);
                _mailMessage.Subject = title;//主题
                _mailMessage.Body = content;//内容
                _mailMessage.BodyEncoding = System.Text.Encoding.UTF8;//正文编码
                _mailMessage.IsBodyHtml = true;//设置为HTML格式
                _mailMessage.Priority = MailPriority.High;//优先级

                try
                {
                    _smtpClient.Send(_mailMessage);
                    return true;
                }
                catch
                {
                    return false;
                }
            }
        }
    }


     

  • 相关阅读:
    [CTSC2018]暴力写挂
    【bzoj 2870】 最长道路tree
    [CTSC2010]珠宝商
    [JXOI2018]守卫
    [JXOI2018]排序问题
    [AHOI2014/JSOI2014]骑士游戏
    [SNOI2017]遗失的答案
    【LGP5437】【XR-2】约定
    【LGP5349】幂
    hdu-2688 Rotate---树状数组+模拟
  • 原文地址:https://www.cnblogs.com/bluewelkin/p/1282571.html
Copyright © 2011-2022 走看看