If prod sets DEFAULT_FROM_EMAIL in .env, ensure that value is also quoted before deploy
## Summary
- Closes #28
- Quote `DEFAULT_FROM_EMAIL` display name (`"AI ML Operations, LLC" <info@aimloperations.com>`) so RFC 5322 From parsing succeeds
- Update settings default, email send fallbacks, and `.env` examples
## Problem
Contact form saved leads but notification email to `ryan@aimloperations.com` failed with:
```
Invalid address; only AI ML Operations could be parsed from "AI ML Operations, LLC <info@aimloperations.com>"
```
Comma in unquoted display name treated as address-list separator.
## Test plan
- [ ] Submit contact form in an environment with SMTP configured
- [ ] Confirm lead appears on leads page
- [ ] Confirm email arrives at ryan@aimloperations.com
- [ ] If prod sets `DEFAULT_FROM_EMAIL` in `.env`, ensure that value is also quoted before deploy
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Summary
DEFAULT_FROM_EMAILdisplay name ("AI ML Operations, LLC" <info@aimloperations.com>) so RFC 5322 From parsing succeeds.envexamplesProblem
Contact form saved leads but notification email to
ryan@aimloperations.comfailed with:Comma in unquoted display name treated as address-list separator.
Test plan
DEFAULT_FROM_EMAILin.env, ensure that value is also quoted before deploy