Set objStream = CreateObject("ADODB.Stream")
objStream.CharSet = "utf-8"
objStream.Open
objStream.LoadFromFile(Server.Mappath("../email/send_pw.html"))
MailContent = objStream.ReadText()
objStream.Close
Set objStream = Nothing
MailContent = Replace(MailContent, "#NAME#", MemberName)
'classic asp' 카테고리의 다른 글
[classic asp] XML 읽기 (0) | 2019.03.13 |
---|---|
[classic asp] json 요청하고 응답받기 (mime) (0) | 2019.03.04 |
[classic asp] 정규식 (0) | 2019.02.13 |
[classic asp] 파일/폴더관리 (0) | 2019.02.13 |
[classic asp] 웹페이지 태그 소스가져오기 (0) | 2019.02.13 |