<%
Option Explicit
Dim objMail
Set objMail = Server.CreateObject("CDONTS.NewMail")
objMail.From = "[email protected] "
objMail.Subject = "閃亮日子之星河影動"
objMail.AttachFile("s:\flashdays\images\win.jpg")
objMail.To = "[email protected]"
objMail.body = "我們一定要解放台灣!"
objMail.Send
Response.write("Mail was Sent")
set objMail = nothing
%>
[1]