Add recipe for wlindabla/mailing-bundle (#2054)

* Add recipe for wlindabla/mailing-bundle

* Fix trailing newline in recipe files

* Trigger CI
This commit is contained in:
INTERNATIONALES WEB APPS & SERVICES
2026-09-16 17:14:16 +04:00
committed by GitHub
parent cd9f5783d0
commit eef2ae1572
2 changed files with 27 additions and 0 deletions
@@ -0,0 +1,12 @@
wlindabla_mailing:
from_addresses:
system:
address: '%env(APP_MAIL_FROM_SYSTEM)%'
name: '%env(APP_MAIL_FROM_SYSTEM_NAME)%'
support:
address: '%env(APP_MAIL_FROM_SUPPORT)%'
name: '%env(APP_MAIL_FROM_SUPPORT_NAME)%'
dkim:
private_key: '%env(resolve:default::MAILER_DKIM)%'
domain: '%env(APP_DKIM_DOMAIN)%'
selector: 'default'
@@ -0,0 +1,15 @@
{
"bundles": {
"Wlindabla\\MailingBundle\\WlindablaMailingBundle": ["all"]
},
"copy-from-recipe": {
"config/": "%CONFIG_DIR%/"
},
"env": {
"APP_MAIL_FROM_SYSTEM": "no-reply-system@myexample.com",
"APP_MAIL_FROM_SYSTEM_NAME": "System",
"APP_MAIL_FROM_SUPPORT": "support-@myexample.com",
"APP_MAIL_FROM_SUPPORT_NAME": "Support",
"APP_DKIM_DOMAIN": "myexample.com"
}
}