removed newline at the end of subject, added MIME-Version header

This commit is contained in:
Scre13 2021-11-08 22:13:14 +01:00
parent b2fc84c98e
commit ee2dab51f3
1 changed files with 2 additions and 1 deletions

View File

@ -62,7 +62,7 @@ mail_send() {
fi
contenttype="text/plain; charset=utf-8"
subject="=?UTF-8?B?$(echo "$_subject" | _base64)?="
subject="=?UTF-8?B?$(printf "$_subject" "%b" | _base64)?="
result=$({ _mail_body | eval "$(_mail_cmnd)"; } 2>&1)
# shellcheck disable=SC2181
@ -131,6 +131,7 @@ _mail_body() {
echo "To: $MAIL_TO"
echo "Subject: $subject"
echo "Content-Type: $contenttype"
echo "MIME-Version: 1.0"
echo
;;
esac