====에러 메시지====
CDO.Message.1 error '80040220'
"SendUsing" 구성 값이 잘못되었습니다.
/inc/regist_in.asp, line 28
====소스코드====
<%@ Language=VBScript %>
<% Option Explicit %>
<!--metadata type="typelib" file="c:\winnt\system32\cdosys.dll"-->
<%
Dim iMsg
Dim iConf
Dim Flds
Dim strHTML
set iMsg = CreateObject("CDO.Message")
set iConf = CreateObject("CDO.Configuration")
strHTML = "<HTML>"
strHTML = strHTML & "<HEAD>"
strHTML = strHTML & "<BODY>"
strHTML = strHTML & "<b> 본문 내용</b></br>"
strHTML = strHTML & "</BODY>"
strHTML = strHTML & "</HTML>"
With iMsg
Set .Configuration = iConf
.To = "us...@mail.net"
.From = "webm...@asp.net"
.Subject = "안녕하세요"
.HTMLBody = strHTML
.Send '<<<============== 에러라인
End With
Set iMsg = Nothing
Set iConf = Nothing
%>
다음을 참고하십시오.
http://www.asp101.com/samples/viewasp.asp?file=email%2Easp
"유키오" <ysn...@hotmail.com> wrote in message
news:ujnK3StqBHA.2452@tkmsftngp03...