Thread MIME::Lite attachment => file not readable (15 answers)
Opened by dafanky at 2008-08-19 14:25

dafanky
 2008-08-19 14:25
#113688 #113688
User since
2008-02-06
16 Artikel
BenutzerIn
[default_avatar]
Hallo zusammen.

Ich wollte ein Mail verschiken mit dem test.txt als Anhang.
Kann mir bitte jemand sagen, wiso ich diese Meldung erhalte?:

/cgi-bin/test.txt: not readable

code:

use MIME::Lite;

open(MAIL , "| /usr/sbin/sendmail -t") ;
my $msg = new MIME::Lite ;
my $tomail="$mail_adress\@adresse.ch" ;
my $frommail="name\@adresse.ch" ;

$msg = build MIME::Lite
From => $frommail ,
To => $tomail ,
Subject => "Test Mail" ,
Type => 'TEXT',
Data => "Test Mail: Dies ist ihre Abfrage." ;

attach $msg
Type => "text/txt" ,
Path => "/public_html/cgi-bin/test.txt" ,
Encoding => "base64" ,
Filename => "test.txt" ;

$msg->print(\*MAIL) ;

close(MAIL) ;

View full thread MIME::Lite attachment => file not readable