윈도우200에서 배치파일 만들기

배치파일 실행
~.bat

@echo off (생략가능)
start http://domain or ip address/~.asp

해당 ~.asp ( 전자 우편 발송할 수 있는 asp )

<%
Set objMail = Server.CreateObjet ("CDO.Message")
With objMail
.From = "보내는 메일주소"
.Subject = " 기타 내용 "
.HTMLBody = " 해당내용 "
.To = " 관리자 이메일주소 "
.Send
End With
set objMail = nothing
%>

Comments

Powered by Facebook Comments

댓글 남기기

당신의 이메일은 공개되지 않습니다. 필수 입력창은 * 로 표시되어 있습니다.

*

다음의 HTML 태그와 속성을 사용할 수 있습니다: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>