Configuration
Let's get up and running!
Application Configuration
moduleSettings = {
cbmailServices = {
// The default token Marker Symbol
tokenMarker : "@",
// Default protocol to use, it must be defined in the mailers configuration
defaultProtocol : "default",
// Here you can register one or many mailers by name
mailers : {
"default" : { class : "CFMail" },
"files" : { class:"File", properties : { filePath : "/logs" } },
"postmark" : { class:"PostMark", properties : { apiKey : "234" } },
"mailgun" : { class:"Mailgun", properties : {
apiKey : "234",
domain: 'mailgun.example.com'
} }
},
// The defaults for all mail config payloads and protocols
defaults : {
from : "[email protected]",
cc : "[email protected]"
},
//Whether the scheduled task is running or not
runQueueTask : true
}
}TokenMarker
DefaultProtocol
Mailers
Defaults
RunQueueTask
Mail Protocols
Mailer WireBox ID
Last updated
Was this helpful?