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

Konfiguracja e-mail.

Bloumer

New Member
Joined
Dec 12, 2008
Messages
198
Reaction score
0
Jak to skonfigurowac zeby wysylalo emaile do osob ktore zaloza konto z gmail.com?

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

Chodzi mi o te skad mam wiedziec czy trzeba autoryzacje, i jaki port jest gmail.com i smtp lub co tam..
 
Ja ci radze , abyś się nie brał za to , ponieważ widzę , że nie potrafisz wyszukiwać informacji na dany problem , co do smtp i jaki port to wikipedia.pl ^^ i google.pl , co do autoryzacji to zazwyczaj każdy serv potrzebuje

ostatni raz , ci pomagam ...
Code:
$config['site']['smtp_enabled'] = "yes"; // yes - właczyć wysyłanie wiadomości , 0 wyłaczyć
$config['site']['smtp_host'] = "smtp.gmail.com"; // adres serwera SMTP ^^ , np. u GMAIL'a , to smtp.gmail.com
$config['site']['smtp_port'] = "25"; // port jaki będzie używał skrypt do połączenia się z SMTP , standardowy to 25
$config['site']['smtp_auth'] = "yes"; // Czy serwer smtp wymaga potwierdzenia .... zazwyczaj tak wiec 1
masz i zanim napiszesz 3 razy w google poszukaj
 
Last edited:
treść błędu jaki ci wyrzuciło ?

ad. 1 poprawiłem swój post wyżej , czy tak u ciebie wygląda ten fragment ?
 
Last edited:
An error occorred while sending email ()!

Jesli mozesz to wez zrob to cale co podalem na poczatku uzupelnij bo ja tego nie ogarniam :eek: nie dziala probowalem tak i tak i nic
 
Code:
$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 (możesz zmienić później na 465 if nie bedzie work)
$config['site']['smtp_auth'] = "yes"; // need authorization? (set 0 if not need auth)
$config['site']['smtp_user'] = "nazwamaila"; // login
$config['site']['smtp_pass'] = "twojehaslodomaila"; // password

i lepiej abyś zrobił pocztę na onet ^^ albo wp bo nie wymagają SSL
 
Hmm dam przykladowe na gmail

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'] = "smtp.gmail.com"; // address
$config['site']['smtp_port'] = 465; // 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'] = "ChujCidotego "; // password

Gmail smiga na 465 porcie

Ja nie korzystam ponieważ mam swój serwer pocztowy
poczta.widnet.eu

i mam kazdy adres w kilkunastu domenach
 
Back
Top