We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a90bfc1 commit 06a9f57Copy full SHA for 06a9f57
.gitignore
@@ -1,4 +1,5 @@
1
.vscode
2
+.idea
3
4
.artifacts/**
5
.tmp/**
models/MailService.cfc
@@ -376,6 +376,9 @@ component accessors="true" singleton threadsafe {
376
var tokenMarker = getTokenMarker();
377
var key = "";
378
379
+ // Do not process tokens if using dynamic template (send-grid-protocol)
380
+ if( arguments.mail.getType() == "template" ) return;
381
+
382
// Check mail parts for content
383
if ( arrayLen( mailparts ) ) {
384
// Loop over mail parts
0 commit comments