Breaking changes
- Acorn v6 is now required. Acorn v6 uses Laravel v13, which renamed the SMTP config key from
encryptiontoscheme. If you’re still on Acorn ≤5, stay onv1.0.4. - PHP >=8.3 is now required, matching Acorn v6.
MAIL_ENCRYPTIONhas been replaced byMAIL_SCHEME. Update your.env:- MAIL_ENCRYPTION=ssl + MAIL_SCHEME=ssl- If you’ve published
config/mail.phpto your project, your copy still has the oldencryptionkey and won’t pick upMAIL_SCHEME. Re-publish it or sync with the latest from roots/acorn.
Bug fixes
- Fix
MAIL_SCHEMEbeing silently ignored, which caused SMTP sends to fall back to PHPMailer’s default and break SSL delivery on port 465 (#17).