Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .claude/skills/adapter-mailer/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ All classes under `Handler/` are invokable (`__invoke()`). Only configured handl
- `sendBatch()` reuses one SMTP connection across all messages (keepalive + NOOP health-check).
- Logging / caching = integration-layer concern — Decorator on `MailerInterface`, never inside the package.

## CONTRACTS (from jardissupport/contract)
## CONTRACTS (from jardissupport/contracts)
| Interface | Implementation |
|-----------|----------------|
| `MailerInterface` | `Mailer` — `send(MailMessageInterface): void` |
Expand Down Expand Up @@ -172,6 +172,6 @@ MAIL_FROM_ADDRESS, MAIL_FROM_NAME
- **Domain:** never imports mailer classes.

## DEPENDENCIES
- `jardissupport/contract ^1.0` — MailerInterface, MailMessageInterface, MailTransportInterface
- `jardissupport/contracts ^1.0` — MailerInterface, MailMessageInterface, MailTransportInterface
- `ext-openssl` — TLS / SSL
- `ext-mbstring` — UTF-8 header encoding
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

**Transactional emails without the bloat.** A lean SMTP mailer for PHP built on raw sockets — covers order confirmations, password resets, and notifications. No Swiftmailer, no Symfony Mailer, no dependency tree. Just SMTP over a socket.

<small>* Zero external PHP packages. Only `ext-openssl` + `ext-mbstring` + `jardissupport/contract` (interfaces only).</small>
<small>* Zero external PHP packages. Only `ext-openssl` + `ext-mbstring` + `jardissupport/contracts` (interfaces only).</small>

---

Expand Down
Loading