I have set up a new website with Kirby 4 and all is well, except for the contact form is not sending anything. This may be an issue on the server end. The hosting people are suggesting I use PHP Mailer. I am using the contact form from the Cookbook recipe. Does that use PHP Mailer?
KIrby uses a wrapper around PHPMailer, but using PHPMailer does not automatically mean that you use SMTP, if you don’t configure it. So that’s probably what the support wanted to suggest.
I have found a syntax error that should be responsible for the empty page:
There is a missing > 'port' => 465,
If you still don’t receive an e-mail, you can make the following change:
instead of security' => true
you can also try the following: security' => 'ssl' or security' => 'tls'
Setting ‘security’ to ‘ssl’ or ‘tls’ is clear and specifies exactly which security protocols are used. ‘true’, on the other hand, is vague and could have different meanings depending on the implementation. I once had a case where my provider could only cope with a clear specification.
Ha, that thing were you stop seeing the obvious
Thank you.
No longer a blank page, but now I am getting a message to say SMTP has been disabled. I think some of this may be related to a DNS propagation issue with the domain that may not be sorted by tomorrow.
Won’t be able to look into it until Monday/Tuesday now, but thank you for your help. I got a little bit closer to a solution.