• 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!

SMTP Server HELP!!

mike

Banned User
Joined
Jun 12, 2008
Messages
150
Reaction score
0
Location
Caracas Venezuela
Hi I have this on config.php

// E-MAIL config
$config['site']['send_emails'] = 1; // is acc. maker configured to send e-mails?
$config['site']['mail_address'] = "[email protected]"; // e-mail address
$config['site']['smtp_enabled'] = "yes"; // send by smtp or mail function (set 0 if use mail function)
$config['site']['smtp_host'] = "smtp.gmail.com"; // address
$config['site']['smtp_port'] = 25; // port
$config['site']['smtp_auth'] = "1"; // need authorization? (set 0 if not need auth)
$config['site']['smtp_user'] = "[email protected]"; // login
$config['site']['smtp_pass'] = "21378891"; // password

How I can activate this?
 
You might want to remove your mail user and password? -,-
 
config.ini at SMTP_host:

['smtp_host'] = "ssl://smtp.gmail.com"; // address right??

what to do or where to go with this last error?

Warning: fsockopen() [function.fsockopen]: unable to connect to ssl://smtp.gmail.com:465 (Unable to find the socket transport "ssl" - did you forget to enable it when you configured PHP?) in C:\xampp\htdocs\phpmailer\class.smtp.php on line 105

EDIT: NVM found it and its solved... just go to php.ini and find extension=php_openssl.dll remove the ; if it has any and resart APACHE.. I works after that
 
Last edited:
Back
Top