well firstly sorry for late reply, i still didnt get few things.
"The first step is to identify the issue. "
well since i am naive in this field , all i can get from the error messgae is that i am not able to send messages, according to all the post put up it comes to the conclusion that Wamp server had no SMTP
1. Is there ne way in which i can config or add ne module in WAMP so that the SMTP is incorporated into it.
Take the $headers out of the mail function and test the script again.
Does it work?
If so, your headers need to be correct.These headers will work for plain text, no attachement. Don't forget to set $fromaddress to the proper address.
Help with Code Tags
php Syntax (Toggle Plain Text)
$headers = "MIME-Version: 1.0\r\n";$headers .= "Content-type: text/plain; charset=iso-8859-1\r \n";
$headers .= "From: \"$fromaddress\" <$fromaddress>\r \n";
$headers .= "Reply-To: \"$fromaddress\" <$fromaddress>\r \n";
$headers .= "Date: " . date("r") . "\r\n";
honestly So9NE , i have no idea what ur talking about , i would be glad if u could be a little more explicit.
One option would be to use a tool like phpmailer, to send your emails through your gmail/hotmail/provider account.
i would appreciate if u could enlighten me abt phpmailer.
As a matter of fact is there any other modules (or what ever its called) like these, which …