Published in: ASP
Send an email from the server.
dim email set email = Server.CreateObject("CDO.Message") with email .From = "me@example.com" .To = "you@example.com" .Subject = "Sending an email" .TextBody = "Blah blah blah" .Send end with set email = Nothing
You need to login to post a comment.
