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 SMTP settings for your email provider by copying the email-related variable in the /opt/bitnami/mantis/config/config_inc.php.sample file into the /opt/bitnami/mantis/config/config_inc.php file. Here’s an example using Gmail. Replace USERNAME and PASSWORD with your Gmail account username and password respectively.
$g_phpMailer_method = PHPMAILER_METHOD_SMTP;
$g_smtp_host = 'smtp.gmail.com';
$g_smtp_port = 587;
$g_smtp_connection_mode = 'tls';
$g_smtp_username = 'USERNAME@gmail.com';
$g_smtp_password = 'PASSWORD';
$g_administrator_email = 'USERNAME@gmail.com';
$g_webmaster_email = 'USERNAME@gmail.com';
$g_from_email = 'USERNAME@gmail.com'; # the "From: " field in emails
$g_return_path_email = 'USERNAME@gmail.com'; # the return address for bounced mail
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.