i need to send fax to fax machine. is it possible by using this tag?
<CF_eFax
The short answer is no. It does not look like the tag works with the new email-to-fax format supported by eFax.
From the looks of the eFax site the 2002 version of cf_efax may no longer work unless and updated version is available.
It looks like you can use cfmail to send faxes if you have a paid subscription to eFax. They layout the details on their site:
http://www.efax.com/en/efax/twa/page/howItWorks
You should be able to do a CFMAIL to the fax number from the email address you used to sign up at eFax.
Your cfmail tag would look something like this where you had a file with text named test_for_email_to_fax.txt on the root of your C drive.
<cfmail to="1231234567@efaxsend.com" from="you@yourdomain.com"
subject="test">
<cfmailparam file = "c:\test_for_email_to_fax.txt" type="text/plain">
</cfmail>
Other attachments are also acceptable:
http://www.efax.com/en/efax/twa/page/supportedFileTypeshttp://www.efax.com/en/efax/twa/page/supportedFileTypes
More on the cfmail tag:
http://livedocs.macromedia.com/coldfusion/6.1/htmldocs/tags-pta.htm#wp2355015
More on the cfmailparam tag:
http://livedocs.macromedia.com/coldfusion/6.1/htmldocs/tags-pb2.htm
I hope this helps.