Files
symfony-flex-recipes/symfony.mailer.4.3.json
T
github-action[bot]andgithub-action[bot] e11d5cb0f6 Update Flex endpoint
2024-11-01 20:46:42 +00:00

57 lines
2.3 KiB
JSON

{
"manifests": {
"symfony/mailer": {
"manifest": {
"copy-from-recipe": {
"config/": "%CONFIG_DIR%/"
},
"env": {
"MAILER_DSN": "null://null"
},
"docker-compose": {
"docker-compose.override.yml": {
"services": [
"mailer:",
" image: axllent/mailpit",
" ports:",
" - \"1025\"",
" - \"8025\"",
" environment:",
" MP_SMTP_AUTH_ACCEPT_ANY: 1",
" MP_SMTP_AUTH_ALLOW_INSECURE: 1"
]
}
},
"post-install-output": [
" * You're ready to send emails.",
"",
" * If you want to send emails via a supported email provider, install",
" the corresponding bridge.",
" For instance, <info>composer require mailgun-mailer</> for Mailgun.",
"",
" * If you want to send emails asynchronously:",
"",
" 1. Install the messenger component by running <info>composer require messenger</>;",
" 2. Add <info>'Symfony\\Component\\Mailer\\Messenger\\SendEmailMessage': amqp</> to the",
" <info>config/packages/messenger.yaml</> file under <info>framework.messenger.routing</>",
" and replace <info>amqp</> with your transport name of choice.",
"",
" * <fg=blue>Read</> the documentation at <comment>https://symfony.com/doc/master/mailer.html</>"
]
},
"files": {
"config/packages/mailer.yaml": {
"contents": [
"framework:",
" mailer:",
" dsn: '%env(MAILER_DSN)%'",
""
],
"executable": false
}
},
"ref": "09051cfde49476e3c12cd3a0e44289ace1c75a4f"
}
}
}