During Web Development in Windows environment, we use XAMPP/WAMP or some other local web server environment to test the code. In many cases includes the sending of mail, so it’s lazy job to upload the file in the server and test. In this case we can set the SMTP (Simple Mail Transfer Protocol) in our local server located in php.ini file.
In case of XAMPP, edit the file located in \xampp\php\php.ini
When the SMTP is not set, error like this is displayed:
Warning: mail() [function.mail]: Failed to connect to mailserver at “localhost” port 25, verify your “SMTP” and “smtp_port” setting in php.ini or use ini_set() in C:\xampp\htdocs\testmail.php on line 10
Search for – [mail function] and change the SMTP value.
[mail function] ; For Win32 only. ; http://php.net/smtp SMTP = localhost ; http://php.net/smtp-port smtp_port = 25
SMTP = smtp.domain.com
Where domain – Domain name of your Internet Service Provider e.g. smtp.ntc.net.np, smtp.mos.com.np, smtp.itechroom.com
In some case it may be – mail.ntc.net.np, mail.itechroom.com
While sending mail Headers need to be defined to specify sender, content type etc.
$headers = "From: sender@domain.com"."\r\n" . 'X-Mailer: PHP/' . phpversion() . "\r\n" . "MIME-Version: 1.0\r\n" . "Content-Type: text/html; charset=utf-8\r\n" . "Content-Transfer-Encoding: 8bit\r\n\r\n";
Now Restart the Apache and try sending the mail.
mail('receiver@domain.com','Testing mail','Mail received from localhost',$headers);


Posted in
Tags: 








I’ve been using adsl(ntc) but by setting SMTP as smtp.ntc.net.np or mail.ntc.net.np it didn’t work.
I have tried with NTC ADSL using smtp.ntc.net.np, It works, May be you forgot to include header or made error somewhere. Follow the instructions once again.
Hi
I am trying to send mail to my mailing account kortexsolutions@gmail.com through my website service form that i am hosting myself. My question to you is, what must i put has my SMTP name, should it be smtp.gmail.com or smtp.dydns.org?
NB- My hostname i receive is from dyndns.com and the index file to my website is on my server.
Need your intervention ASAP. Thank you
If you are hosting on online server then you need not to set any SMTP, It is required only during testing the codes on local server i.e. from your computer.
please tell how to solve the error
mail() [function.mail]: SMTP server response: 550 5.7.1 Unable to relay for spl.ponramesh@gmail.com in C:\xampplite\htdocs\xampp\mail.php on line 34