※※※※※※※※※※※※※※※※※※※※
<html>
<head>
</head>
<body>
hello
<%
set msg = Server.CreateOBject("JMail.Message")
msg.From = "×××@163.com"
msg.FromName = "Decheng"
msg.MailServerUserName="×××"(填电子邮件的用户名)
msg.MailServerPassWord="×××"(填电子邮件的密码)
msg.AddRecipient "×××"(填你想发送的电子邮箱)
msg.Body = "This w3 JMail stuff rocks!" & vbCrLf
msg.appendText "Here’s some text."
msg.appendText "And here’ s some more"
msg.Send( "smtp.163.com" )(如果用的不是163,请换成其它的SMTP服务器)
</body>
</html>