Example code is for an older version of Server, newer code is available.
<!-- Copyright (c) 2021 ActivePDF, Inc. -->
<!-- ActivePDF Server 2009 -->
<!-- Example generated 03/04/21 -->
<%
Dim strPath, intPSToPDF
strPath = Server.MapPath(".") & "\"
' Instantiate Object
Set oSVR = Server.CreateObject("APServer.Object")
' Start Email
oSVR.AddEmail
' Email server (IP or Domain Name)
oSVR.SMTPServer = "10.1.10.33"
' Email user details
oSVR.EMailNameFrom = "PDF Server"
oSVR.EMailIDFrom = "pdfserver@fakedomainname.com"
oSVR.EMailReplyTo = "pdfserver@fakedomainname.com"
oSVR.EMailNameTo = "Derek Andelin"
oSVR.EMailTo = "derek.andelin@activepdf.com"
oSVR.EMailCC = "activepdf@myfatback.com"
' Email details
oSVR.EMailSubject = "PDF Server Delivery"
oSVR.EMailText = "Here is your PDF!"
' Email attachment details
oSVR.EMailAttachOutput = true
oSVR.AddEMailAttachment strPath & "confidential.txt"
' Convert the PostScript file into PDF
intPSToPDF = oSVR.PSToPDF(strPath & "PS.ps", strPath & "Email.pdf")
If intPSToPDF <> 0 Then
ErrorHandler "PSToPDF", intPSToPDF
End If
' Clear email options used when not clearing the Server object
oSVR.RemoveEMail "pdfserver@fakedomainname.com"
oSVR.ClearEMailAttachments
oSVR.ClearEMails
' Release Object
Set oSVR = Nothing
' Process Complete
Response.Write "Done!"
' Error Handling
Sub ErrorHandler(method, outputCode)
Response.Write("Error in " & method & ": " & outputCode)
End Sub
%>