charm_™

This commit is contained in:
Maas Lalani 2023-06-21 14:49:11 -04:00
parent ea8aa49cde
commit d550dfa63c
No known key found for this signature in database
GPG key ID: 5A6ED5CBF1A0A000
2 changed files with 34 additions and 24 deletions

View file

@ -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
<!--
Use a package manager:
```bash
# macOS
brew install email
brew install pop
# Arch
yay -S email
yay -S pop
# Nix
nix-env -iA nixpkgs.email
nix-env -iA nixpkgs.pop
```
-->
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`.
Wed 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
<sub><sub>z</sub></sub><sub>z</sub>z
[MIT](https://github.com/charmbracelet/vhs/raw/main/LICENSE)
***
Part of [Charm](https://charm.sh).
<a href="https://charm.sh/">
<img
alt="The Charm logo"
width="400"
src="https://stuff.charm.sh/charm-badge.jpg"
/>
</a>
Charm热爱开源 • Charm loves open source

2
go.mod
View file

@ -1,4 +1,4 @@
module github.com/maaslalani/email
module github.com/charmbracelet/pop
go 1.19