I have a coldfusion mail spooler locking up on me everytime I send out an email using this code:
<cfmail TO="[email protected]"
FROM="[email protected]"
SUBJECT="Your Order!!!!!" type="html">
hello
</cfmail>
Only way I can get this thing to email out of the spooler is to stop IIS and start IIS. Then it flushes through.
If I use
<cfmail TO="[email protected]"
FROM="[email protected]"
SUBJECT="Your Order!!!!!" spoolEnable="false" type="html">
hello
</cfmail>
Then the email goes straight through no problem, I would like to use the spooler since it has a less lag for the user.
What's going on with my coldfusion spooler?? I am running 9,0,0,251028 (standard)
BTW: I have tried doing (with no luck):
<cfset sFactory = CreateObject("java","coldfusion.server.ServiceFactory")>
<cfset MailSpoolService = sFactory.mailSpoolService>
<cfset MailSpoolService.stop()>
<cfset MailSpoolService.start()>
debug=true. - Leigh