Hello
I have the following code to fax a word doc, but has anyone idea how to
fax the output of a URL.
Following is the code........
----------
Dim FaxServer As Object
Dim FaxDoc As Object
'Create FaxServer object...
Set FaxServer = CreateObject("FaxServer.FaxServer")
'...and connect to it - no empty name allowed
FaxServer.Connect ("tahir")
'Create document
Set FaxDoc = FaxServer.CreateDocument("c:\test.doc")
FaxDoc.FaxNumber = "6368855"
FaxDoc.RecipientName = "John Doe"
FaxDoc.Send
Set FaxDoc = Nothing
FaxServer.Disconnect
Set FaxServer = Nothing