Hi! I’m trying to migrate a website from v2 to v3, I usually use the PHP mail option in Settings → Mail Configuration, but on v3 I don’t see it anymore, I just see the API’s, Sendmail, SMTP, etc.
I use Magic Forms to create contact and booking forms, and I can’t seem to get it done.
I’m not an expert, so I’ll appreciate any help!
To send mail the same as mail() PHP function, you should configure the mailer in the following way:
MAIL_MAILER=sendmail
The host, user, password, port and encryption are not needed. At this point, you may check if it already works, but sometimes this next step is also needed.
It would be a big problem if this feature isn’t working, every customer would tell us about it!
To help with your troubleshooting, open the modules/system/ServiceProvider.php file and take a look at the extendMailerService method. Check that the following code is running:
if (MailSetting::isConfigured()) {
MailSetting::applyConfigValues();
}