diff options
author | EuAndreh <eu@euandre.org> | 2022-09-18 23:32:13 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2022-09-18 23:32:13 -0300 |
commit | f1097703ac9064cbba02d6d7d4dd062215212a36 (patch) | |
tree | a86ced037c6f70165238378759ae3b09039bc621 | |
parent | git mv common-lisp/ lisp-cli/ (diff) | |
download | dotfiles-f1097703ac9064cbba02d6d7d4dd062215212a36.tar.gz dotfiles-f1097703ac9064cbba02d6d7d4dd062215212a36.tar.xz |
bin/email: Add UTF-8 content-type header
-rwxr-xr-x | bin/email | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -67,7 +67,7 @@ shift $((OPTIND - 1)) eval "$(assert-arg "${SUBJECT:-}" '-s SUBJECT')" eval "$(assert-arg "${1:-}" 'ADDRESS')" -printf 'Subject: %s\n\n%s' \ +printf 'Content-Type: text/plain; charset=UTF-8\nSubject: %s\n\n%s' \ "$(echo "$SUBJECT" | tr -d '\n')" \ "$(cat)" | msmtpq -a euandreh "$@" |