mrjameer Posted August 31, 2006 Share Posted August 31, 2006 hi when i execute a mail program iam getting some error as followsWarning: 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:\appserv\www\mails.php on line 20what is the solution to this problemcode<?php// Target email address.$to="webmaster@localhost";// Your subject.$subject="Test Email";// Sender. You may put the sender's email address after "from:". This example file use "[email protected]"$mail_from="from: [email protected] \n";// Set this email to HTML email format.$mail_from .="Content-Type: text/html; charset=utf-8 \n";// Your message.$message="Hello, This is your test email.<br>Your email server is working now!";// Send email.$sentmail = mail($to,$subject,$message,$mail_from);// If your email succesfully sent.if($sentmail){echo "Email has been sent.";}else {echo "Cannot send email.";}?>thanksmrjameer Link to comment https://forums.phpfreaks.com/topic/19277-php-mail/ Share on other sites More sharing options...
ober Posted August 31, 2006 Share Posted August 31, 2006 If you are running this on your personal computer, you need to install a mail server. If this is running on a site hosted by someone else, they don't have a mailserver installed or configured correctly.If this is your own computer, I suggest: http://www.postcastserver.com/ Link to comment https://forums.phpfreaks.com/topic/19277-php-mail/#findComment-83607 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.