Skip to content
Closed
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
File renamed without changes.
File renamed without changes.
15 changes: 3 additions & 12 deletions README.md → .github/README.md
Original file line number Diff line number Diff line change
@@ -1,24 +1,15 @@
![ByteSend](./apps/web/public/nameplate.png)
![ByteSend](../apps/web/public/nameplate.png)

**Open-source email infrastructure that works.** REST API, SMTP relay, campaigns, contact management, and real-time webhooks - self-hosted or managed on [bytesend.cloud](https://bytesend.cloud).
**Open-source email infrastructure that works.** REST API, SMTP relay, campaigns, contact management, and real-time webhooks self-hosted or managed on [bytesend.cloud](https://bytesend.cloud).

[Dashboard](https://bytesend.cloud) · [Docs](https://docs.bytesend.cloud) · [API Reference](https://docs.bytesend.cloud/api-reference/introduction) · [Discord](https://discord.gg/xqkqzVRC4S)

---

## Cloud

The fastest way to get started is the managed cloud at [bytesend.cloud](https://bytesend.cloud). No infrastructure to manage just sign up, verify a domain, and start sending.
The fastest way to get started is the managed cloud at [bytesend.cloud](https://bytesend.cloud). No infrastructure to manage just sign up, verify a domain, and start sending.

| Plan | Price | Emails/month | Domains | Contacts |
|---|---|---|---|---|
| **Free** | CA$0 | 12,500 | 2 | 100 |
| **Hobby** | CA$5/mo | 25,000 | 4 | 200 |
| **Lite** | CA$10/mo | 50,000 | 6 | 300 |
| **Professional** | CA$30/mo | 150,000 | 100 | 1,000,000 |
| **Lifetime** | CA$60 once | Unlimited | 500 | 10,000,000 |

Hobby and above include marketing campaigns and usage-based overage billing. Professional and Lifetime include advanced analytics and priority support.

---

Expand Down
File renamed without changes.
File renamed without changes.
6 changes: 6 additions & 0 deletions .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,9 @@ jobs:

for APP_NAME in bytesend smtp-proxy; do
for TAG in $TAGS; do
# Clean up any existing manifest (allows re-running without failures)
docker manifest rm bytesend/$APP_NAME:$TAG 2>/dev/null || true

docker manifest create \
bytesend/$APP_NAME:$TAG \
--amend bytesend/$APP_NAME-amd64:$TAG \
Expand Down Expand Up @@ -185,6 +188,9 @@ jobs:

for APP_NAME in bytesend smtp-proxy; do
for TAG in $TAGS; do
# Clean up any existing manifest (allows re-running without failures)
docker manifest rm ghcr.io/bytesend/$APP_NAME:$TAG 2>/dev/null || true

docker manifest create \
ghcr.io/bytesend/$APP_NAME:$TAG \
--amend ghcr.io/bytesend/$APP_NAME-amd64:$TAG \
Expand Down
Loading
Loading