Como posso enviar e-mail sem usar uuencode e mudo?

2

É possível enviar um anexo do unix / AiX sem usar o comando uuencode e MUTE?

Podemos escrever um script Perl que envie e-mails corretamente, mas sem anexos. Posso obter o código perl que envia o anexo em PDF?

#!/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";
    
por Ashish 09.10.2014 / 14:43

1 resposta

1

Aqui está uma função bash para enviar um email com anexos. Eu escrevi isso para um sistema Linux, então ele espera que o programa base64 esteja disponível.

########################################################################
# 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
}
    
por 30.09.2015 / 01:20

Tags