Csharp: Send Email

3722 단어 email
 /// <summary>
        ///  
        ///  
        /// 20130816
        /// </summary>
        /// <param name="to"> </param>
        /// <param name="toName"> </param>
        /// <param name="subject"> </param>
        /// <param name="body"> </param>
        /// <returns></returns>
        public bool SendMailMessage(string to, string toName, string subject, string body)
        {
            bool re = false;
            try
            {
                 int id = 1;
                 string bcc="[email protected]";
                 string bccName = "geovindu"; 
                 string cc = string.Empty; 
                 string ccDisName = string.Empty;

                vipSetMailHostInfo = vipSetMailHostBLL.SelectVipSetMailHost(id);

                // Instantiate a new instance of MailMessage
                MailMessage mMailMessage = new MailMessage();

                // Set the sender address of the mail message
                mMailMessage.From = new MailAddress(vipSetMailHostInfo.SmtpUser, vipSetMailHostInfo.SmtpName);
                // Set the recepient address of the mail message
                mMailMessage.To.Add(new MailAddress(to, toName)); // ,  // , 

                // Check if the bcc value is null or an empty string
                if ((bcc != null) && (bcc != string.Empty))
                {
                    // Set the Bcc address of the mail message
                    mMailMessage.Bcc.Add(new MailAddress(bcc, bccName));// 
                }
                // Check if the cc value is null or an empty value
                if ((cc != null) && (cc != string.Empty))
                {
                    // Set the CC address of the mail message
                    mMailMessage.CC.Add(new MailAddress(cc, ccDisName)); // 
                }       // Set the subject of the mail message
                mMailMessage.ReplyTo = new MailAddress("[email protected]", "VIP "); // 
               
                //mMailMessage.ReplyTo = "VIP";
                mMailMessage.Subject = subject;
                // Set the body of the mail message
                mMailMessage.Body = body;

                // Set the format of the mail message body as HTML
                mMailMessage.IsBodyHtml = true;
                mMailMessage.BodyEncoding = System.Text.Encoding.UTF8;//

                // Set the priority of the mail message to normal
                mMailMessage.Priority = MailPriority.Normal;

                // Instantiate a new instance of SmtpClient
                // SmtpClient mSmtpClient = new SmtpClient();
                SmtpClient SmtpServer = new SmtpClient(vipSetMailHostInfo.SmtpServer);
                SmtpServer.Credentials = new NetworkCredential(vipSetMailHostInfo.SmtpUser, vipSetMailHostInfo.SmtpPasswor);
                SmtpServer.Port = 25;
                SmtpServer.EnableSsl = false;
                // Send the mail message
                SmtpServer.Send(mMailMessage);
                re = true;
            }
            catch (Exception ex)
            {
                ex.Message.ToString();
                re = false;

            }
            return re;
        }

좋은 웹페이지 즐겨찾기