I've got a bit of code that generates an email and sends it out when a user
completes a form. This morning it started spewing out an infinite loop of
emails. I altered the form to make sure it's only sending out one message,
and it is:
' .Send
Response.Write "To: " & .To : Response.Flush
It's only sending it out once from the ASP page, so apparently the problem
is with my SMTP service (which is IIS6). It's up to 5000 messages off one
submit so far, and it shows no intention of stopping. I've even rebooted
the box, and as soon as I enable SMTP it starts filling up the Queue
folder. Right now I've got SMTP disabled.
Is there any way to REALLY flush out the SMTP, so it clears out all items?
I assumed clearing the queue would do it, but as I said it keeps coming
back.
Has anybody else run into this endless loop problem in their SMTP service?
Regards,
Scott