Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

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.

4 Answers

up vote 42 down vote accepted

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.

share|improve this answer
9  
This has to be one of the most useful tools I have ever encountered:) Thank you for this one! Works great! – Antonio Louro Nov 17 '11 at 14:59
Thanks for this posting this super useful program, Madmartigan. – MauF Dec 9 '11 at 16:42
awesome tool :) – Sameh Serag Oct 25 '12 at 1:00
Does not work on Win 7 for me... – shadyyx Dec 12 '12 at 22:04
1  
Works with wamp with no config watsoever. Just open the .eml with windows live mail (no config needed). – pinouchon Jan 28 at 10:36
show 2 more comments

Install Fake Sendmail (http://glob.com.au/sendmail/). Then configure C:\wamp\sendmail\sendmail.ini:

smtp_server=smtp.gmail.com
smtp_port=465
auth_username=user@gmail.com
auth_password=your_password

The above will work against a Gmail account. And then configure php.ini:

sendmail_path = "C:\wamp\sendmail\sendmail.exe -t"

Now, restart Apache, and that is basically all you need to do.

share|improve this answer

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/

share|improve this answer

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.

Just tried it and it worked like a charm! Once I uncommented the error log and found out that it was stalling on the pop3 authentication, I just removed that and it sent nicely. Best of luck!

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.