Bash에서 HTML 이메일을 보낼 때 파일이 첨부되지 않음

Bash에서 HTML 이메일을 보낼 때 파일이 첨부되지 않음

HTML 이메일 Bash로 보낼 때 파일이 첨부되지 않음

다음은 내 샘플 스크립트입니다. 스크립트를 실행할 때 이메일은 첨부 파일 없이 전송됩니다. 도와주세요.

#!/bin/bash
FOUND_EMAIL_TEXT="This is an automated report generated .
Please investigate and remediate them as soon as possible."
 (
             echo "From: [email protected]"
             echo "To: [email protected]"
             echo "MIME-Version: 1.0"
             echo "Subject: Test Email"
             echo "Content-Type: text/html"
             echo "<FONT FACE='COURIER NEW' SIZE='5'>;<PRE>"
             echo -e "${FOUND_EMAIL_TEXT}
             echo "</PRE><;/FONT>;"
             echo "Content-Type: text/html"
             echo 'Content-Disposition: attachment; filename="'/ght.txt/'"'
                echo "$(cat /home/dfg/ter.txt)"
) | sendmail -t 

관련 정보