• 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 Send mail

mpa

Member
Joined
Oct 8, 2008
Messages
319
Reaction score
13
Location
Sweden
In geisors aac manager you can send mail if you have lost ex your password. But I can't find any English hosts for this.
Does anyone know of a good host? Will gmail work?

I can't get this to work!
Can anyone help me please?
 
Last edited:
Yes, GMail is good for this, but it needs SSL encryption in connection. Host for gmail: ssl://smtp.gmail.com port: 4xx
Find this info yourself.
 
uhm:
But I can't find any English hosts for this.
Does anyone know of a good host?

I don't want to create my own SMTP server to send mails. I want to find a FREE company like gmail.
But gmail needs some SSL shit so I can't use that / don't know how to use that with geisor aac (unnamed aac).
 
Hello I have this:

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'] = "0"; // send by smtp or mail function (set 0 if use mail function)
$config['site']['smtp_host'] = "ssl://smtp.gmail.com"; // address
$config['site']['smtp_port'] = 587; // port
$config['site']['smtp_auth'] = "yes"; // need authorization? (set 0 if not need auth)
$config['site']['smtp_user'] = "[email protected]"; // login
$config['site']['smtp_pass'] = "xxxxx"; // password

Cant seem to make it work.
I went to Settings in GMAIL Forwarding and POP/IMAP and then Enable POP for all mail (even mail that's already been downloaded)


Im getting this at my website when trying to get my password emailed.

Code:
An error occorred while sending email! Try again or contact with admin.
 
It would take you more to find a free SMTP server than creating your own one. There are a lot of free SMTP servers that are easy to configure out there. Google is your friend!
 
Sign up for GMX

edit 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'] = "[COLOR="Red"][B][email protected][/B][/COLOR]"; // 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.gmx.com"; // address
$config['site']['smtp_port'] = 25; // port
$config['site']['smtp_auth'] = "yes"; // need authorization? (set 0 if not need auth)
$config['site']['smtp_user'] = "[B][COLOR="Red"][email protected][/COLOR][/B]"; // login
$config['site']['smtp_pass'] = "[B][COLOR="Red"]yourpassword[/COLOR][/B]"; // password
 
Back
Top