C#메일 보내기qq 및 163

이것은 세계적인 문장이다...
C#qq와 163의 smtp 서버를 호출하여 메일을 보낼 수 있습니다
우선, 각각 qq와 163 메일박스에 로그인하여 각각 smtp 서비스를 켜야 하며, 켜는 과정에서 문자 검증이 필요하고, 그 후에 ssh 키를 받습니다.
다음은 코드입니다.
using System.Net.Mail;
using System.Net;

namespace ConsoleApplication5
{
    class Program
    {
        static void Main(string[] args)
        {
            /*   qq --> 163    
            SmtpClient client = new SmtpClient("smtp.qq.com", 587);
            client.EnableSsl = true;
            client.Credentials = new NetworkCredential(" qq @qq.com", " ssh for qq");

            MailMessage mail = new MailMessage();
            mail.From = new MailAddress(" qq @qq.com");
            mail.To.Add(new MailAddress(" @163.com"));    

            mail.IsBodyHtml = true;
            mail.Priority = MailPriority.High;
            mail.Subject = " ";
            mail.Body = " ";
            client.Send(mail);
            */



            /*  163 --> qq    
            SmtpClient client = new SmtpClient("smtp.163.com", 25);
            client.EnableSsl = true;
            client.Credentials = new NetworkCredential(" @163.com", " ssh for 163");

            MailMessage mail = new MailMessage();
            mail.From = new MailAddress(" 163 @163.com");
            mail.To.Add(new MailAddress(" @qq.com"));

            mail.IsBodyHtml = true;
            mail.Priority =MailPriority.Normal;
            mail.Subject = " ";
            mail.Body = " ";
            client.Send(mail);
            */
        }
    }
}

좋은 웹페이지 즐겨찾기