是否可以在不使用 uuencode 和 MUTE 命令的情況下從 unix/AiX 發送附件?
我們可以編寫一個Perl腳本,它將正確發送電子郵件,但沒有附件,我可以獲得發送PDF附件的perl程式碼嗎?
#!/usr/bin/perl
$to = '[email protected]';
$from = '[email protected]';
$subject = 'Email from QA server';
$message = 'This is test email sent by Perl Script1';
open(MAIL, "|/usr/sbin/sendmail -t");
# Email Header
print MAIL "To: $to\n";
print MAIL "From: $from\n";
print MAIL "Subject: $subject\n\n";
# Email Body
print MAIL $message;
close(MAIL);
print "Email Sent Successfully\n";
答案1
這是一個發送帶有附件的電子郵件的 bash 函數。我是為 Linux 系統編寫的,所以它希望該base64
程式可用。
########################################################################
# usage: echo "$body" | email_attachment -f from -t to -c cc -s subject -a attachment_filename
# the -a option can be specified multiple times
email_attachment() {
local from to cc subject attachments=()
local OPTIND OPTARG
local body=$( cat )
local boundary="_====-boundary-${$}-$(date +%Y%m%d%H%M%S)-====_"
while getopts f:t:c:s:a: opt; do
case $opt in
f) from=$OPTARG ;;
t) to=$OPTARG ;;
c) cc=$OPTARG ;;
s) subject=$OPTARG ;;
a) attachments+=( "$OPTARG" ) ;;
esac
done
{
echo "From: $from"
echo "To: $to"
echo "Cc: $cc"
echo "Subject: $subject"
echo "Content-Type: multipart/mixed; boundary=\"$boundary\""
echo "Mime-Version: 1.0"
echo
echo "This is a multi-part message in MIME format."
echo
printf -- "--%s\n" "$boundary"
echo "Content-Type: text/plain; charset=ISO-8859-1"
echo
echo "$body"
echo
for filename in "${attachments[@]}"; do
# attach it if it's readable and non-zero size
if [[ -r "$filename" ]] && [[ -s "$filename" ]]; then
printf -- "--%s\n" "$boundary"
echo "Content-Transfer-Encoding: base64"
echo "Content-Type: application/octet-stream; name=$(basename "$filename")"
echo "Content-Disposition: attachment; filename=$(basename "$filename")"
echo
base64 "$filename"
echo
fi
done
printf -- "--%s--\n" "$boundary"
} | /usr/lib/sendmail -oi -t
}