<a href=mailto:[email protected]?subject="主题"&body="内容">发邮件</a&g

1<a href='mailto:[email protected]?subject="主题"&amp;body="内容"'>发邮件</a>

怎样设置发html格式的邮件?密件发送与抄送怎样设置?
多谢!

---------------------------------------------------------------

要程序写的,,``` sub sendmail(fromwho,towho,subject,body)
dim mymail
set mymail=server.createobject("cdonts.newmail")
mymail.from=fromwho
mymail.to=towho
mymail.subject=subject
mymail.body=body
mymail.send
set mymail=nothing
end sub
fromwho=trim(request.form("fromwho"))
towho=trim(request.form("towho"))
subject=trim(request.form("subject"))
body=trim(request.form("body"))
if towho<>"" then
sendmail fromwho,towho,subject,body

end if

```
Published At
Categories with Web编程
Tagged with
comments powered by Disqus