You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHub’s verified signature.
Breaking changes
Acorn v6 is now required. Acorn v6 uses Laravel v13, which renamed the SMTP config key from encryption to scheme. If you're still on Acorn ≤5, stay on v1.0.4.
PHP >=8.3 is now required, matching Acorn v6.
MAIL_ENCRYPTION has been replaced by MAIL_SCHEME. Update your .env:
- MAIL_ENCRYPTION=ssl+ MAIL_SCHEME=ssl
If you've published config/mail.php to your project, your copy still has the old encryption key and won't pick up MAIL_SCHEME. Re-publish it or sync with the latest from roots/acorn.
Bug fixes
Fix MAIL_SCHEME being silently ignored, which caused SMTP sends to fall back to PHPMailer's default and break SSL delivery on port 465 (#17).