Hi, I am having problem getting email to work. When I try to email a resource it tells me it is sent, but I never receive the email. My install details are: Bitnami's one click install in the Google Cloud. I am trying to enter my credentials and smtp settings for our SendGrid account in the config.php file. Here is what I have added, is there anything else I need to update in this / other files?
# Use an external SMTP server for outgoing emails (e.g. Gmail).
$use_smtp=true;
# SMTP settings:
$smtp_secure='ssl'; # , 'tls' or 'ssl'. For Gmail, 'tls' or 'ssl' is required.
$smtp_host='
smtp.sendgrid.net'; # Hostname, e.g. '
smtp.gmail.com'.
$smtp_port=2525; # Port number, e.g. 465 for Gmail using SSL.
$smtp_auth=true; # Send credentials to SMTP server (false to use anonymous access)
$smtp_username='IEnteredMyUsername'; # Username (full email address).
$smtp_password='IEnteredMyPWD'; # Password.
#enable php mailer - this is also to allow HTML format emails.
$use_phpmailer=false;