Moin, ich möchte auf meiner Dev Umgebung den SMTP Mailversand testen.
-
Port forwarding in Vagrantfile
-
SMTP Konfiguration
-
Versand
Liegt das evtl an der .env Datei? Und wenn ja- wass muss ich hier ändern?
# This file is a "template" of which env vars need to be defined for your application
# Copy this file to .env file for development, create environment variables when deploying to production
# https://symfony.com/doc/current/best_practices/configuration.html#infrastructure-related-configuration
###> symfony/framework-bundle ###
APP_ENV=dev
APP_SECRET=8583a6ff63c5894a3195331701749943
APP_URL=http://192.168.33.10
#TRUSTED_PROXIES=127.0.0.1,127.0.0.2
#TRUSTED_HOSTS=localhost,example.com
###< symfony/framework-bundle ###
###> symfony/swiftmailer-bundle ###
# For Gmail as a transport, use: "gmail://username:password@localhost"
# For a generic SMTP server, use: "smtp://localhost:25?encryption=&auth_mode="
# Delivery is disabled by default via "null://localhost"
MAILER_URL=smtp://mailhog:1025
###< symfony/swiftmailer-bundle ###
INSTANCE_ID=
DATABASE_URL=mysql://app:app@localhost:3306/shopware
COMPOSER_HOME=/home/vagrant/.composer
BLUE_GREEN_DEPLOYMENT=1
SHOPWARE_ES_HOSTS=elasticsearch:9200
SHOPWARE_ES_ENABLED=0
SHOPWARE_ES_INDEXING_ENABLED=0
SHOPWARE_ES_INDEX_PREFIX=sw
SHOPWARE_HTTP_CACHE_ENABLED=0
SHOPWARE_HTTP_DEFAULT_TTL=7200
DOCKER_SYNC_ENABLED=
USER_ID=1000
GROUP_ID=1000
FEATURE_NEXT_516=1
VG Philipp