description |
---|
June 15 2022 |
Let’s investigate the new features and improvements.
- Ability for the
preMailSend
event to influence themail
record thanks to @gpickin
- This setting is defaulted to
true
.- If
false
it will not run the mail queue task in the background
- If
You can now register a MailGun protocols by using its alias:
moduleSettings = {
cbMailservices : {
defaultProtocol : "default",
mailers : {
"default" : { class : "CFmail" },
"memory" : { class : "InMemory" },
"mailgun" = {
class = "Mailgun",
// Required properties
properties = {
ApiKey = '123',
domain = 'mg.somedomain.com'
}
}
}
}
}