in reply to Re^2: Two issues with XLSX reporting
in thread Two issues with XLSX reporting

Lihao, here's what i used and it doesn't work: my $mail = MIME::Lite->new(
From =>'abc@host.com',
To =>'abc@host.com',
#Cc =>'def@host.com',
Subject =>'Hello!',
Data =>"How's it goin', eh?",
Type => 'multipart/mixed',
content-type.charset => 'UTF-8',
content-type => 'application/zip'
);


$mail->attach(
Type => 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',
#Encoding => 'base64',
Path => 'report.xlsx',
#Filename => 'report.xlsx'
Disposition => 'attachment'
);

please advise!

Replies are listed 'Best First'.
Re^4: Two issues with XLSX reporting
by marto (Cardinal) on Dec 05, 2013 at 14:20 UTC