diff --git a/system/services/email/EmailTemplateService.cfc b/system/services/email/EmailTemplateService.cfc index dbd292740..1ca2f44a6 100644 --- a/system/services/email/EmailTemplateService.cfc +++ b/system/services/email/EmailTemplateService.cfc @@ -692,7 +692,13 @@ component { * @markAsSent.hint Whether or not to mark a 'fixedschedule' template as sent */ public string function updateScheduledSendFields( required string templateId, boolean markAsSent=false ) { - var template = getTemplate( id=arguments.templateId, allowDrafts=true, fromVersionTable=false ); + var template = getTemplate( + id = arguments.templateId + , allowDrafts = true + , fromVersionTable = false + , useRequestCache = false + ); + var updatedData = { schedule_next_send_date = "" }; if ( template.sending_method == "scheduled" ) {