Return To Home Page
Send Email Using OCXMail Objects from Flicks Software
This is one of the more simple 3rd party ASP Emailing Components to use. There is not a lot of code.
<%
Dim ObjSendMail
Set ObjSendMail = Server.CreateObject("ASPMail.ASPMailCtrl.1")
' line below shown in case you want to populate and provide variables for the values
'ObjSendMail.SendMail Mail_RemoteHost, EmailTo, EmailFrom, EmailSubject, EmailBody
ObjSendMail.SendMail "mail.somesite.com", "somebodyelse@somesite.com", "someone@somesite.com", "your subject", "your email body"
Set ObjSendMail = nothing
%>
ASP
(Active Server Pages) is a technology developed by Microsoft. Pages using ASP
are primarily developed in JScript, or VBScript and are integrated into the
HTML of your Web pages. The ASP code is compiled on-the-fly by the server and
the resulting output is standard HTML. By using ASP, Web pages can be dynamic,
full of ever-changing content, and browser independent.