Hi.
I have used rental space and used web mail there in ASP, like;
Set Mail = Server.CreateObject("Some.MailSender")
Mail.Host = somerHost
Mail.From = fromAddress
-----
Mail.AddAddress bccAdr
Mail.AddBCC bccAdr
Mail.Subject = "Some matter" ' message subject
Mail.Body = "Something to someone"
-----
Mail.Send ' send message
Then can I use the same method in IIS's built-in mail server?
Thanks.
M.M.