Is there a way that I can configure the WAMP server for PHP to enable the mail() function. If not then is there a local mail server that I can install to test the mail() feature of PHP?
closed as off topic by Gordon♦, Theodros Zelleke, Vicky, Ash Burlaczenko, M42 Feb 7 at 12:49
Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.
|
Configuring a working email client from localhost is quite a chore, I have spent hours of frustration attempting it. I'm sure someone more experienced may be able to help, or they may perhaps agree with me. If you just want to test, here is a great tool for testing mail locally, that requires almost no configuration: http://www.toolheap.com/test-mail-server-tool/ It worked right off the bat for me, hope this helps you. |
|||||||||||||||
|
|
Install Fake Sendmail (http://glob.com.au/sendmail/). Then configure C:\wamp\sendmail\sendmail.ini:
The above will work against a Gmail account. And then configure php.ini:
Now, restart Apache, and that is basically all you need to do. |
|||
|
|
|
You need a SMTP server to send your mail. If you have one available which does not require SMTP authentification (maybe your ISP's?) just edit the 'SMTP' ([mail function]) setting in your php.ini file. If this is no option because your SMTP server requires authentification you won't be able to use the internal mail() function and have to use some 3rd party class which supports smtp auth. e.g. http://pear.php.net/package/Mail/ |
|||
|
|
|
Using an open source program call Send Mail, you can send via wamp rather easily actually. I'm still setting it up, but here's a great tutorial by jo jordan. Takes less than 2 mins to setup.
|
||||
|
|