From d550dfa63c5c55e63e0dec9e3d4a49b6f8130672 Mon Sep 17 00:00:00 2001 From: Maas Lalani Date: Wed, 21 Jun 2023 14:49:11 -0400 Subject: [PATCH] =?UTF-8?q?charm=5F=E2=84=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 56 ++++++++++++++++++++++++++++++++----------------------- go.mod | 2 +- 2 files changed, 34 insertions(+), 24 deletions(-) diff --git a/README.md b/README.md index b1fd67d..e4da1f7 100644 --- a/README.md +++ b/README.md @@ -1,64 +1,74 @@ -# Email +# Pop Send emails from your terminal. ## Command Line Interface ```bash -email --from "me@example.com" --to "you@example.com" \ - --subject "Hello, world!" --attach invoice.pdf \ - < message.md +pop < message.md \ + --from "me@example.com" \ + --to "you@example.com" \ + --subject "Hello, world!" \ + --attach invoice.pdf ``` - ## Text-based User Interface Launch the TUI ```bash -email +pop ``` ## Installation - - Install with Go: ```sh -go install github.com/maaslalani/email@main +go install github.com/charmbracelet/pop@latest ``` -Or download a binary from the [releases](https://github.com/maaslalani/email/releases). +Or download a binary from the [releases](https://github.com/charmbracelet/pop/releases). ## License -[MIT](https://github.com/maaslalani/email/blob/master/LICENSE) +[MIT](https://github.com/charmbracelet/pop/blob/master/LICENSE) ## Feedback -I'd love to hear your feedback on improving `email`. +We’d love to hear your thoughts on this project. Feel free to drop us a note! -Feel free to reach out via: -* [Email](mailto:maas@lalani.dev) -* [Twitter](https://twitter.com/maaslalani) -* [GitHub issues](https://github.com/maaslalani/email/issues/new) +* [Twitter](https://twitter.com/charmcli) +* [The Fediverse](https://mastodon.social/@charmcli) +* [Discord](https://charm.sh/chat) ---- +## License -zzz +[MIT](https://github.com/charmbracelet/vhs/raw/main/LICENSE) + +*** + +Part of [Charm](https://charm.sh). + + + The Charm logo + + +Charm热爱开源 • Charm loves open source diff --git a/go.mod b/go.mod index 71fe70f..62400cb 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/maaslalani/email +module github.com/charmbracelet/pop go 1.19