Localhost email configuration XAMPP

-1

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?

    
asked by anonymous 26.08.2018 / 02:29

1 answer

0

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.

    
26.08.2018 / 07:25