Ooops... my web hosting provider does not support SQLServer and I've
had a dickens of a time installing it and finding workarounds. I have
an Access database running on my site... can that be used to retrieve
XML data? I'm a newbie to sending out bulk emails through VB.net/
ASP.net so I don't know where to start.
I did find this block of code that I may be able to learn something:
<%@ Page Explicit="True" Language="VB" Debug="True" %>
<html>
<body>
<%
Dim EMailFrom As String = "bill@edgequest.com"
Dim EMailTo As String = "billhatfield@edgequest.com"
Dim EMailSubject As String = "Important message!"
Dim EMailBody As String = "Thanks for reading this" & _
"message but I must admit, I lied. There's " & _
"nothing important about this message at all."
Dim MySmtpClient As New _
System.Net.Mail.SmtpClient("localhost")
MySmtpClient.Send(EMailFrom, EMailTo, _
EMailSubject, EMailBody)
%>
</body>
</html>
> hmm...you can use SQL Server to retrieve data from XML file and send
> emails...