Using Auron E-mail Component in ASP classic
To use the E-mail Component objects in ASP classic make sure the component has been installed on the server.
You can find working examples of how to use the Auron E-mail Component in ASP classic on github.
The following code shows how to declare, create and use one of the E-mail Component objects:
<html>
<body>
Version:
<script language="vbscript" runat="server">
Set objSmtp = CreateObject("AxEmail.Smtp") ' Declaration and Creation
' Display version information
Response.Write "Auron Email Component" & objSmpp.Version
</script>
</body>
</html>