I made an email setup on a WordPress contact form and added a link mailto:xxxxx
. It is already on the page defined, but it does not get me anywhere. What do I need to configure within XAMPP to enable this form?
I made an email setup on a WordPress contact form and added a link mailto:xxxxx
. It is already on the page defined, but it does not get me anywhere. What do I need to configure within XAMPP to enable this form?
Use FakeSendMail for sending from your local development machine by configuring:
1 - Uncomment the line below the php.ini file, and enter the correct path:
2 - Configure as needed, for example:
smtp_port = 587
smtp_ssl = tls
smtp_server = smtp.gmail.com
auth_username = [email protected]
auth_password = my_password
It should work that way.