问题
To send a fax internally, we have been using the following Coldfusion code to create the object that handles the fax:
<cfobject type="COM" action="Create" name="objFaxServer"
class="FaxServer.FaxServer.1">
While we are remaining on ColdFusion 8, we are moving our server to Windows Server 2008, which is a 64-bit system. As a result, we are now unable to call COM objects, such as FaxServer, to handle such requests. I'm looking for an internal alternative (no 3rd party like InterFax.net) but I have not been able to find one, nor any advice to handle this situation.
Any suggestions on what to use or how to internally send out faxes via coldfusion?
回答1:
I would use an email to fax gateway such as efax. This makes the whole process very simple you just send an email with the phone number in the subject field.
I know you said internally, but I think externally is better :)
来源:https://stackoverflow.com/questions/10590534/faxserver-alternative-for-windows-server-2008