每次我使用以下代码发送电子邮件时,都会有一个coldfusion邮件假脱机程序锁定我:
<cfmail TO="xxxx@gmail.com"
FROM="xxxx@xxxxxx.com"
SUBJECT="Your Order!!!!!" type="html">
hello
</cfmail>
我可以让这个东西从假脱机程序中通过电子邮件发送出去的唯一方法是停止 IIS 并启动 IIS。然后它冲过去。
如果我使用
<cfmail TO="xxxx@gmail.com"
FROM="xxxx@xxxxxx.com"
SUBJECT="Your Order!!!!!" spoolEnable="false" type="html">
hello
</cfmail>
然后电子邮件直接通过没问题,我想使用后台处理程序,因为它对用户的延迟更少。
我的coldfusion spooler怎么了??我正在运行 9,0,0,251028(标准)
顺便说一句:我试过做(没有运气):
<cfset sFactory = CreateObject("java","coldfusion.server.ServiceFactory")>
<cfset MailSpoolService = sFactory.mailSpoolService>
<cfset MailSpoolService.stop()>
<cfset MailSpoolService.start()>