0
我很新的VBSCRIPT但這裏是我到目前爲止,似乎並沒有被工作雖:如何在ASP發送電子郵件到通訊組列表使用VBScript
<script type="text/vbscript">
Sub Senmail()
Dim objOutlook As Object
Dim objOutlookMsg As Object
Set objOutlook = CreateObject("Outlook.Application")
Set objOutlookMsg = objOutlook.CreateItem(0)
With objOutlookMsg
.To = "[email protected]"
.Cc = "[email protected]"
.Subject = "Hello World (one more time)..."
.Body = "This is the body of message"
.HTMLBody = "HTML version of message"
.Send
End With
Set objOutlookMsg = Nothing
Set objOutlook = Nothing
End Sub
</script>
任何投入將不勝感激!或者任何其他方式,我可以發送電子郵件是我的asp ....
你試過[CDO](http://stackoverflow.com/questions/4412129/how-to-create-group-email-with-cdo-使用-vb6/4433233#4433233)? – 2011-07-05 20:45:54