Configure SMTP for outbound emails
To configure the SMTP settings, follow the steps below:
-
Navigate to the TYPO3 installation directory:
$ cd /opt/bitnami/typo3
-
Configure the SMTP settings with the TYPO3 console. Find below an example of how to configure SMTP settings using a Gmail account. Replace USERNAME and PASSWORD with your Gmail account username and password respectively.
$ sudo php ./vendor/bin/typo3cms configuration:set MAIL/transport "smtp" $ sudo php ./vendor/bin/typo3cms configuration:set MAIL/transport_smtp_encrypt "false" --json $ sudo php ./vendor/bin/typo3cms configuration:set MAIL/transport_smtp_server "smtp.gmail.com" $ sudo php ./vendor/bin/typo3cms configuration:set MAIL/transport_smtp_username "USERNAME@gmail.com" $ sudo php ./vendor/bin/typo3cms configuration:set MAIL/transport_smtp_password "PASSWORD" $ sudo php ./vendor/bin/typo3cms configuration:set MAIL/defaultMailFromAddress "USERNAME@gmail.com"
-
Restart the server for changes to take effect:
$ sudo /opt/bitnami/ctlscript.sh restart
To configure the application to use other third-party SMTP services for outgoing email, such as SendGrid, refer to the FAQ.
NOTE: If you are using Gmail as the outbound email server, your application’s attempts to send outgoing emails may be blocked by Gmail if it considers the authentication attempts to be suspicious. When this happens, you will receive a Gmail security alert at the corresponding Gmail address. To proceed, you will need to manually confirm the validity of the authentication attempt before Gmail will permit the application to send outbound emails. For more information on this and other Gmail issues related to outbound email from your application, refer to our Gmail SMTP troubleshooting page.