<% 'fromMail = Request("fromMail") 'toMail = Request("toMail") 'ccMail = Request("ccMail") 'subject = Request("subject") 'body = Request("body") 'Set objMail = Server.CreateObject("CDONTS.NewMail") 'objMail.From = fromMail '<-- º¸³»´Â »ç¶÷ ÁÖ¼Ò 'objMail.To = toMail '<-- ¹Þ´Â »ç¶÷ ÁÖ¼Ò 'objMail.Cc = ccMail '<-- ÂüÁ¶ÇÏ´Â »ç¶÷ ÁÖ¼Ò 'objMail.Subject = subject '<-- Á¦¸ñ 'objMail.Body = body '<-- º»¹® 'objMail.importance = 0 '<-- Á߿䵵 'objMail.Send 'Set objMail = nothing fromMail = Request("fromMail") toMail = Request("toMail") ccMail = Request("ccMail") subject = Request("subject") body = Request("body") Set myMail=server.CreateObject("CDO.Message") Set iConf = myMail.Configuration With iConf.Fields .Item("http://schemas.microsoft.com/cdo/configuration/sendusing") =1 .Item("http://schemas.microsoft.com/cdo/configuration/smtpserver") ="127.0.0.1" .Item("http://schemas.microsoft.com/cdo/configuration/smtpserverport") =25 .Update End with myMail.From = fromMail myMail.To = toMail myMail.Subject = Subject 'myMail.textBody = msgBody 'msgbody°¡ ÅØ½ºÆ®¸ÞÀÏÀΰæ¿ì myMail.htmlBody = Body myMail.Send set myMail = nothing %>