I am trying to send e-mails from my page using the following lines of code
<%@ impport NameSpace System.Web.mail %>
dim srcaddr as string = "[email protected]"
dim destaddr as string = "[email protected]"
dim mailsubject as string = "Test"
dim mailbody as string = "This is a Test"
SmtpMail.Send(srcaddr,destaddr,mailsubject,mailbod y)
However no mail gets send.
I read somewhere that the Default SMTP server needs to be configured by opening
the Internet Services Manager.
I cant figure out where this Internet Services Manager is.
Can anybody advise me on this or on any better way of sending mail.