SMTP Error: Could not connect to SMTP host when send email

Hello all, i use mailer for email sender in my app . But i got error SMTP Error: Could not connect to SMTP host i have activated my openssl in my php configuration. Could you help me please ?

check whether your SMTP server is correct by telnet to it.

telnet <smtp host> 25

configure your SMTP host and SMTP port in php.ini or use ini_set() to set these parameters in your code before mail() function. If you are hosting on some 3rd party server then check with their settings, some times they use username and password also.

Thanks all i think i have solved this problem. Thanks all for your respons :D