Don't use cfmail, try writing the mail file directly into the exchange queue folder, should be fine.
Heres some sample code from a custom tag of mine. It should point you in the right direction. <cfset variables.content = "Content-type: text/plain Date: #dateformat(now(),"ddd, dd mmm yyyy")# #timeformat(now(),"HH:mm:ss")# #variables.offset# From: #Attributes.from# Subject: #Attributes.Subject# To: #Attributes.to# CC: #variables.cc# BCC: #variables.bcc# #variables.message# "> <cflock name="#variables.messageName#" type="EXCLUSIVE" timeout="10"> <CFFile action="WRITE" file="#variables.spoolDir##variables.messageName#.eml" output="#variables.content#"> </cflock> Craig. -----Original Message----- From: Shahzad.Butt [mailto:[EMAIL PROTECTED]] Sent: 25 November 2002 13:29 To: CF-Talk Subject: Exchange Hi We are using MS Outlook 2000 (Fax over IP) to send faxes from computer. It works perfect as outlook probably converts Email-type to FAX rather than SMTP. But when I try doing same practice in coldfusion (MX) it doesn't work. following is Fax I am trying to send <cfmail to="[Fax:01992701604]" from="[EMAIL PROTECTED]" subject="Test from Shaz" server="11.11.11.11"> This is test by Shaz </cfmail> I am getting following error "Information","scheduler-1","11/25/02","13:07:31",,"C:\CFusionMX\logs\ma il.log initialized" "Error","scheduler-1","11/25/02","13:07:31",,"No recipient addresses" Is there anyway that we can convert Email type to Custom Type (FAX) not SMTP??? Any help appreciated. Regards Shahzad ********************************************************************** This email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error please notify the system manager. This footnote also confirms that this email message has been swept by MIMEsweeper for the presence of computer viruses. www.mimesweeper.com ********************************************************************** ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4 FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Get the mailserver that powers this list at http://www.coolfusion.com

