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. Send emails from your terminal.
## Command Line Interface ## Command Line Interface
```bash ```bash
email --from "me@example.com" --to "you@example.com" \ pop < message.md \
--subject "Hello, world!" --attach invoice.pdf \ --from "me@example.com" \
< message.md --to "you@example.com" \
--subject "Hello, world!" \
--attach invoice.pdf
``` ```
## Text-based User Interface ## Text-based User Interface
Launch the TUI Launch the TUI
```bash ```bash
email pop
``` ```
## Installation ## Installation
<!--
Use a package manager: Use a package manager:
```bash ```bash
# macOS # macOS
brew install email brew install pop
# Arch # Arch
yay -S email yay -S pop
# Nix # Nix
nix-env -iA nixpkgs.email nix-env -iA nixpkgs.pop
``` ```
-->
Install with Go: Install with Go:
```sh ```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 ## License
[MIT](https://github.com/maaslalani/email/blob/master/LICENSE) [MIT](https://github.com/charmbracelet/pop/blob/master/LICENSE)
## Feedback ## 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: * [Twitter](https://twitter.com/charmcli)
* [Email](mailto:maas@lalani.dev) * [The Fediverse](https://mastodon.social/@charmcli)
* [Twitter](https://twitter.com/maaslalani) * [Discord](https://charm.sh/chat)
* [GitHub issues](https://github.com/maaslalani/email/issues/new)
--- ## 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 go 1.19