Hi, previously I have used Kirby’s built-in email with settings in config.php
with Office 365 and smtp basic authentication. It has worked great.
An example:
<?php
return [
'email' => [
'presets' => [
'contact' => [
'from' => 'noreply@example.com',
]
],
'transport' => [
'type' => 'smtp',
'port' => 587,
'security' => 'tls',
'host' => 'smtp.office365.com',
'auth' => true,
'username' => 'noreply@example.com',
'password' => '...',
]
],
];
But today I was informed that basic authentication for Office 365 will stop working on October 1 2022 (so already passed).
https://www.microsoft.com/en-us/microsoft-365/blog/2022/09/01/microsoft-retires-basic-authentication-in-exchange-online/
Does anyone here have experience setting up Kirby with Office 365 and MFA (modern authentication) for a simple contact form?