feat: add mailjet smtp transport
This commit is contained in:
@@ -58,3 +58,8 @@ APP_BPN_CRM_ID_TEAMER=1070
|
|||||||
APP_DEFAULT_EMAIL_FROM=[email protected]
|
APP_DEFAULT_EMAIL_FROM=[email protected]
|
||||||
APP_DEFAULT_EMAIL_TO=[email protected]
|
APP_DEFAULT_EMAIL_TO=[email protected]
|
||||||
|
|
||||||
|
|
||||||
|
###> symfony/mailjet-mailer ###
|
||||||
|
# MAILER_DSN=mailjet+api://PUBLIC_KEY:[email protected]
|
||||||
|
# #MAILER_DSN=mailjet+smtp://PUBLIC_KEY:[email protected]
|
||||||
|
###< symfony/mailjet-mailer ###
|
||||||
|
|||||||
@@ -43,6 +43,7 @@
|
|||||||
"symfony/http-client": "6.4.*",
|
"symfony/http-client": "6.4.*",
|
||||||
"symfony/intl": "6.4.*",
|
"symfony/intl": "6.4.*",
|
||||||
"symfony/mailer": "6.4.*",
|
"symfony/mailer": "6.4.*",
|
||||||
|
"symfony/mailjet-mailer": "6.4.*",
|
||||||
"symfony/mime": "6.4.*",
|
"symfony/mime": "6.4.*",
|
||||||
"symfony/monolog-bundle": "^3.0",
|
"symfony/monolog-bundle": "^3.0",
|
||||||
"symfony/notifier": "6.4.*",
|
"symfony/notifier": "6.4.*",
|
||||||
|
|||||||
Generated
+67
-1
@@ -4,7 +4,7 @@
|
|||||||
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
||||||
"This file is @generated automatically"
|
"This file is @generated automatically"
|
||||||
],
|
],
|
||||||
"content-hash": "80032b42109841d2d7c7490322d5e2b0",
|
"content-hash": "5911cb3f7a5a11524bde5368b3fa7865",
|
||||||
"packages": [
|
"packages": [
|
||||||
{
|
{
|
||||||
"name": "beberlei/doctrineextensions",
|
"name": "beberlei/doctrineextensions",
|
||||||
@@ -5473,6 +5473,72 @@
|
|||||||
],
|
],
|
||||||
"time": "2024-09-25T14:18:03+00:00"
|
"time": "2024-09-25T14:18:03+00:00"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "symfony/mailjet-mailer",
|
||||||
|
"version": "v6.4.13",
|
||||||
|
"source": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/symfony/mailjet-mailer.git",
|
||||||
|
"reference": "92dc190cb9414e9c404eed5551cca2ffb6ddc336"
|
||||||
|
},
|
||||||
|
"dist": {
|
||||||
|
"type": "zip",
|
||||||
|
"url": "https://api.github.com/repos/symfony/mailjet-mailer/zipball/92dc190cb9414e9c404eed5551cca2ffb6ddc336",
|
||||||
|
"reference": "92dc190cb9414e9c404eed5551cca2ffb6ddc336",
|
||||||
|
"shasum": ""
|
||||||
|
},
|
||||||
|
"require": {
|
||||||
|
"php": ">=8.1",
|
||||||
|
"symfony/mailer": "^5.4.21|^6.2.7|^7.0"
|
||||||
|
},
|
||||||
|
"require-dev": {
|
||||||
|
"symfony/http-client": "^5.4|^6.0|^7.0",
|
||||||
|
"symfony/webhook": "^6.3|^7.0"
|
||||||
|
},
|
||||||
|
"type": "symfony-mailer-bridge",
|
||||||
|
"autoload": {
|
||||||
|
"psr-4": {
|
||||||
|
"Symfony\\Component\\Mailer\\Bridge\\Mailjet\\": ""
|
||||||
|
},
|
||||||
|
"exclude-from-classmap": [
|
||||||
|
"/Tests/"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"notification-url": "https://packagist.org/downloads/",
|
||||||
|
"license": [
|
||||||
|
"MIT"
|
||||||
|
],
|
||||||
|
"authors": [
|
||||||
|
{
|
||||||
|
"name": "Fabien Potencier",
|
||||||
|
"email": "[email protected]"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Symfony Community",
|
||||||
|
"homepage": "https://symfony.com/contributors"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"description": "Symfony Mailjet Mailer Bridge",
|
||||||
|
"homepage": "https://symfony.com",
|
||||||
|
"support": {
|
||||||
|
"source": "https://github.com/symfony/mailjet-mailer/tree/v6.4.13"
|
||||||
|
},
|
||||||
|
"funding": [
|
||||||
|
{
|
||||||
|
"url": "https://symfony.com/sponsor",
|
||||||
|
"type": "custom"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://github.com/fabpot",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
||||||
|
"type": "tidelift"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"time": "2024-10-18T07:55:54+00:00"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/messenger",
|
"name": "symfony/messenger",
|
||||||
"version": "v6.4.16",
|
"version": "v6.4.16",
|
||||||
|
|||||||
@@ -163,6 +163,15 @@
|
|||||||
"config/packages/mailer.yaml"
|
"config/packages/mailer.yaml"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
"symfony/mailjet-mailer": {
|
||||||
|
"version": "6.4",
|
||||||
|
"recipe": {
|
||||||
|
"repo": "github.com/symfony/recipes",
|
||||||
|
"branch": "main",
|
||||||
|
"version": "5.2",
|
||||||
|
"ref": "037c3256baa3334fd4cc3092a63209ae523696ff"
|
||||||
|
}
|
||||||
|
},
|
||||||
"symfony/maker-bundle": {
|
"symfony/maker-bundle": {
|
||||||
"version": "1.49",
|
"version": "1.49",
|
||||||
"recipe": {
|
"recipe": {
|
||||||
|
|||||||
Reference in New Issue
Block a user