You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 6, 2019. It is now read-only.
Usin the beta Version v2.1.934-171-gbc02380, i can send emails to google accounts, but in the new release the emails never arrives to the destinations, here is my config in local.config.php, the smtp port its correct is a setup from my ISP
Add multiple SMTP servers by separating them with ;
Config::Set('EMAIL_SMTP_SERVERS', 'mail.airbilbaovirtual.com');
Config::Set('EMAIL_SMTP_PORT', '26');
Config::Set('EMAIL_SMTP_USE_AUTH', true);
Config::Set('EMAIL_SMTP_SECURE', ''); # must be "ssl" for Google Apps
Config::Set('EMAIL_SMTP_USER', '[email protected]');
Config::Set('EMAIL_SMTP_PASS', '+++++++++');
The text was updated successfully, but these errors were encountered:
Yes the email address it's fine, receiving and sending emails, the unic
solution was, edit the file core/lib/phpmailer/class.phpmailer.php with my
parameters, and now runs fine.
Do you wants to testit, i can create a email address for testing purposes?
Usin the beta Version v2.1.934-171-gbc02380, i can send emails to google accounts, but in the new release the emails never arrives to the destinations, here is my config in local.config.php, the smtp port its correct is a setup from my ISP
Email Settings
Config::Set('EMAIL_FROM_NAME', 'adminVA');
Config::Set('EMAIL_FROM_ADDRESS', '[email protected]');
Config::Set('EMAIL_NEW_REGISTRATIONS', '[email protected]');
Config::Set('EMAIL_NEW_PIREP', '[email protected]');
Config::Set('EMAIL_USE_SMTP', true);
Add multiple SMTP servers by separating them with ;
Config::Set('EMAIL_SMTP_SERVERS', 'mail.airbilbaovirtual.com');
Config::Set('EMAIL_SMTP_PORT', '26');
Config::Set('EMAIL_SMTP_USE_AUTH', true);
Config::Set('EMAIL_SMTP_SECURE', ''); # must be "ssl" for Google Apps
Config::Set('EMAIL_SMTP_USER', '[email protected]');
Config::Set('EMAIL_SMTP_PASS', '+++++++++');
The text was updated successfully, but these errors were encountered: