I am testing a new email object I am creating
in the event home I am putting this code and it is emailing me on the doSend() but I am getting two emails.
rc.EmailMessage = new model.email.emailForgotPassword(pEmailPrimer=getEmailPrimer());
rc.EmailMessage.doSend(pParams=params);
Is there a ColdBox setting that causes it to fire an event twice?
I am in my development mode with
coldbox.debugMode = true;
coldbox.handlerCaching = false;
coldbox.eventCaching = false;
coldbox.debugPassword = “”;
coldbox.reinitPassword = “”;
coldbox.handlersIndexAutoReload = false;
coldbox.configAutoReload = false;
Any guesses?