X-Git-Url: https://git.ozlabs.org/?a=blobdiff_plain;f=send_email;h=9930ad2b10e4742ced3431ee54fc467a38bf0af6;hb=122af73ed70c3e808292e2921f2a4316cc15282c;hp=60842a7a991cdd472b88a933b0b91be785d90893;hpb=7fc728705df723b3dfc59f66dd9d81d6bae97aa2;p=next-scripts diff --git a/send_email b/send_email index 60842a7..9930ad2 100755 --- a/send_email +++ b/send_email @@ -1,12 +1,13 @@ #!/bin/bash -TARGET="$(realpath --relative-to=. $(dirname $0)/../mails)"/$(date +"%Y-%m-%d+%s").email +mail_dir=$(realpath --relative-to=. "$(dirname "$0")/../mails") +printf -v TARGET '%s/%(i%Y-%m-%d+%s)T.email' "$mail_dir" -1 to="$1" cc="$2" subject="$3" -( +{ cat < $TARGET +} > "$TARGET" -gvim $TARGET +gvim "$TARGET" -echo "When you're finished editing you need to send $TARGET" +printf 'When you are finished editing you need to send %s\n' "$TARGET" exit 0