SMTP help

jomapi

Guppy
hey guys i am a newbie at php please help me..
i hav receiving this prob:
"Warning: Failed to connect to mailserver, verify your "SMTP" setting in php.ini in c:\phpdev\www\email2.php on line 21"

can anyone help me??
 
what is the value of SMTP in your PHP.ini. If you have a SMTP server running locally, set it to "localhost". If you donot, then set it to your ISP's SMTP.
 
tanmaya said:
what is the value of SMTP in your PHP.ini. If you have a SMTP server running locally, set it to "localhost". If you donot, then set it to your ISP's SMTP.

how do set it to localhost? where can i find this php.ini, ive tried searching it but i cant really find it
 
Create a file named "php.ini" in your "c:\phpdev\www" folder and then put the below content in it:

[mail function]
SMTP = localhost
smtp_port = 25
sendmail_from = [email protected]
 
jomapi said:
hey guys i am a newbie at php please help me..
i hav receiving this prob:
"Warning: Failed to connect to mailserver, verify your "SMTP" setting in php.ini in c:\phpdev\www\email2.php on line 21"

can anyone help me??


Make sure your email script not using smtp auth method
 
Back
Top