1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
| my $msg = new MIME::Lite
From=>'Expéditeur',
To=>$mail_to,
Subject =>'Sujet du mail',
Type=>'multipart/mixed',
Data=>"Bonjour,
Veuillez trouver ci-joints diverses choses.
Au revoir !
moi@ma_boite.fr";
foreach my $file ( @liste_files )
{
attach $msg
Type=>'application/text',
Path=>"$fromdir/$file",
Filename=>$file
or die "attach: ************ $date: FIN ANORMALE DU SCRIPT $0 **********: $!\n";
print "Le fichier $file a ete ajoute en piece jointe au mail.\n";
}
$msg->send_by_smtp('smtp.ma_boite.fr'); |
Partager