Configure SMTP for outbound emails
- Google Cloud Platform doesn’t allow SMTP traffic through port 25. Check Google cloud documentation to learn how to use a different port for sending emails from your application.
Configure the email settings by editing the /opt/bitnami/apps/akeneo/htdocs/.env file. For example, to configure a Gmail account, you could use the settings below. Replace USERNAME and PASSWORD with your Gmail account username and password respectively.
MAILER_URL="smtp://smtp.gmail.com:587?encryption=tls&auth_mode=login&username=USERNAME@gmail.com&password=PASSWORD&sender_address=user@example.com"
To configure the application to use other third-party SMTP services for outgoing email, such as SendGrid, refer to the FAQ.