Created
April 29, 2014 03:26
-
-
Save abdullahbutt/11389999 to your computer and use it in GitHub Desktop.
how to send email from wamp using sendmail
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Install Fake Sendmail (http://glob.com.au/sendmail/). Then configure C:\wamp\sendmail\sendmail.ini: | |
smtp_server=smtp.gmail.com | |
smtp_port=465 | |
[email protected] | |
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. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment