> how would i write messages to this folder and not > to cfmail? do i need to generate some sort of > text file, that is the whole complete email, the > header etc...?
You would need to generate the starting headers in addition to your message in CF, which would basically be the date, subject, to, from, and anything else you want to toss in. The IIS SMTP Service will add the first received header for you. Write the file to the pickup directory (c:\inetpub\mailroot\pickup) using CFFILE and name it with "#createUUID()#.msg" as the IIS SMTP service will grab anything tossed in there and try to deliver it. An example might look like... --- Subject: #your_subject# From: #from_address# To: #to_address# Date: Tue, 1 Mar 2005 23:20:49 -0500 Dear User, your message goes here. --- With the date, you can use "#dateFormat(now(), 'ddd, d, mmm yyyy')# #timeFormat(now(), 'hh:mm:ss')#" to put it in the format indicated. Be sure to use the correct GMT offset for your time zone. ----------------------------------- Justin D. Scott Vice President Sceiron Interactive, Inc. www.sceiron.com [EMAIL PROTECTED] 941.378.5341 - office 941.320.2402 - mobile 877.678.6011 - facsimile ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours spent on a project or with a client with Logware today. Try it for free with a 15 day trial account. http://www.houseoffusion.com/banners/view.cfm?bannerid=67 Message: http://www.houseoffusion.com/lists.cfm/link=i:4:197074 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4 Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4 Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

