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

"An error occorred while sending email!" - acc maker

kluku

New Member
Joined
Feb 26, 2010
Messages
52
Reaction score
0
Hey, I have problem with acc maker - "Lost Account"
When I enter there and set character name and
"Send me new password and my account name to account e-mail adress"
and i set "E-mail to account: "
then
An error occorred while sending email! Try again or contact with admin.

htdocs\config\config.php
Code:
// 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'] = "mail.gmail.com"; // address
$config['site']['smtp_port'] = 25; // port
$config['site']['smtp_auth'] = "fyes"; // need authorization? (set 0 if not need auth)
$config['site']['smtp_user'] = "example"; // login
$config['site']['smtp_pass'] = "topsecret"; // password

Whats wrong?
 
ssl is not port 25, you need port: 465 or 587

And your:
$config['site']['smtp_auth'] = "fyes"; // need authorization? (set 0 if not need auth)

should be:
$config['site']['smtp_auth'] = "yes"; // need authorization? (set 0 if not need auth)

(you had an extra f)

i did and nothing works :S
 
After configuring files, it still has the same issue, Also the files included are the exact same files that come with the web distro. Gesior Acc-0.3.6.
 
plaese, help.

i have the same problem.

Gesior ACC does not send email.
$config['site']['send_emails'] = true;
$config['site']['mail_address'] = "*******@gmail.com";
$config['site']['mail_senderName'] = "******";
$config['site']['smtp_enabled'] = true;
$config['site']['smtp_host'] = "ssl://mail.gmail.com";
$config['site']['smtp_port'] = 465;
$config['site']['smtp_auth'] = true;
$config['site']['smtp_user'] = "*******@gmail.com";
$config['site']['smtp_pass'] = "********";
$config['site']['smtp_secure'] = true;
 
Back
Top