• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Linux Gesior - email send error

justikar

Active Member
Joined
Oct 28, 2013
Messages
145
Reaction score
32
well, i can use lostaccount on localhost, so i suppose my scripts are ok.

# Emails Config
$config['site']['send_emails'] = true;
$config['site']['mail_address'] = "[email protected]";
$config['site']['smtp_enabled'] = true;
$config['site']['smtp_host'] = "ssl://smtp.gmail.com";
$config['site']['smtp_port'] = 465;
$config['site']['smtp_auth'] = true;
$config['site']['smtp_user'] = "[email protected]";
$config['site']['smtp_pass'] = "xxxx";


but when i try to do the same in my server (linux) , i got error

An error occorred while sending email! Try again or contact with admin.


can someone helmp me?
 
Last edited:
at a glance it sounds like the smtp address might be wrong.
no guarantee this will be it but try changing the smtp host to this.

$config['site']['smtp_host'] = "smtp.gmail.com";

Also be sure that port 465 is open on either the server/computer that you are running the server on.
 
Back
Top