Durch Verwendung find
des Befehls habe ich mehrere Dateien erhalten. Jetzt möchte ich alle diese Dateien als E-Mail-Anhang hinzufügen. Wie füge ich diese Dateien als Anhang einer einzelnen E-Mail hinzu?
Ich möchte dies in einem Skript implementieren. Muss ich eine For-Schleife verwenden und die Dateien in Array-Variablen speichern?
Beispiel: Ich habe 3 Dateiergebnisse durch die folgenden
find . -type f -name "sum*"
Ergebnis:
sum123.pdf
sum234.pdf
sum453.pdf
Antwort1
mutt
Sie können dies folgendermaßen tun :
mutt -a $(find . -type f -name "sum*")
Wenn Sie es nicht interaktiv machen möchten, versuchen Sie
mutt -s "Subject" -a $(find . -type f -name "sum*") -- [email protected] < /dev/null
Wenn mutt
nicht installiert ist,Hierist ein Beispiel mit mail
und mehr Tools (zB mpack
)!
Es müsste also so etwas sein wie
#!/bin/bash
# This needs heirloom-mailx
from="[email protected]"
to="[email protected]"
subject="Some fancy title"
body="This is the body of our email"
declare -a attargs
for att in $(find . -type f -name "sum*"); do
attargs+=( "-a" "$att" )
done
mail -s "$subject" -r "$from" "${attargs[@]}" "$to" <<< "$body"
Für eine sh-Umgebung ohne Deklaration:
#!/bin/sh
# This needs heirloom-mailx
from="[email protected]"
to="[email protected]"
subject="Some fancy title"
body="This is the body of our email"
attargs=""
for att in $(find . -type f -name "sum*"); do
attargs="${attargs}-a $att "
done
attargs=${attargs::-1}
mail -s "$subject" -r "$from" ${attargs[@]} "$to" <<< "$body"
Antwort2
ATTACH_FILE=`ls $HOME/data/*log.txt`
rmdat $HOME/file.dat
rmdat $HOME/sendemail.dat
ATTACH_FILE="$(echo $ATTACH_FILE | sed 's/ /\\n/g')"
export FILE=$HOME/file.dat
export FILE1=$HOME/sendemail.dat
echo $ATTACH_FILE >> $FILE
ATT_FILES=""
while read BP_fl
do
ATT_FILES=$ATT_FILES" uuencode $BP_fl $(basename $BP_fl) ;"
done < $HOM/file.dat
echo '( echo "Hi" ; ' >> $FILE1
echo $ATT_FILES >> $FILE1
echo ') | mailx -m -s " automation test email" [email protected] ' >> $FILE1
chmod 777 $FILE1
. $FILE1