Last active
October 2, 2024 17:20
-
-
Save mlbd/fc3b6e9763aa2e84e9967f5f354cc1f2 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
---------------------------------------------------------------------- | |
// C:\xampp\php\php.ini | |
---------------------------------------------------------------------- | |
[mail function] | |
smtp_port=587 | |
sendmail_from = [email protected] | |
sendmail_path = "\"C:\xampp\sendmail\sendmail.exe\" -t" | |
---------------------------------------------------------------------- | |
// C:\xampp\sendmail\sendmail.ini | |
---------------------------------------------------------------------- | |
smtp_server=smtp.gmail.com | |
smtp_port=587 | |
error_logfile=error.log | |
debug_logfile=debug.log | |
[email protected] | |
auth_password=your-gmail-password | |
[email protected] | |
If it still not send mail then config your gmail account following instruction. | |
https://support.google.com/accounts/answer/6010255 | |
DONE and restert Apache and enjoy |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I did try to add the from details in sendmail.ini and it didn't work, i think it has something to do with the sendmail_path...
when i remove the " either all or one i get successful echo message but of course no message ever sent.
anyway; thanks for the reply; I'll dig little bit deeper because i think it has something to do with my OS.
Thank you.