in reply to Re: MIME::Lite behaving strange
in thread MIME::Lite behaving strange
#!/usr/bin/perl -w use MIME::Lite; use strict; use warnings; my $mail_host = 'servername.com'; my $to='fname.lname@sun.com'; my $from="west"; my $subject="Reports"; my $body = "See attached reports.\n"; ### Create the multipart container my $msg = MIME::Lite->new ( From => $from, To => $to, Subject => $subject, Type =>'multipart/mixed' ) or die "Error creating multipart container: $!\n"; ### Add the text message part $msg->attach ( Type => 'TEXT', Data => $body ) or die "Error adding the text message part: $!\n"; ### Add the file $msg->attach ( Type => 'text/plain; charset=UTF-8', Path => '/dir/dir/dir/report', Filename => 'test.txt', Disposition => 'attachment' ) or die "Error adding untouched_tickets.csv: $!\n"; ### Send the Message MIME::Lite->send('smtp', $mail_host, Timeout=>60); $msg->send;
Content of the test.txt on server is -
this is a test message
However content of the test.txt which came through email is -
So the attachment is containing these 4 file names everytime I send email, no matter which file I am attaching.mkStats.pl CheckDB.pl CleanUp.pl reports.pl
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: MIME::Lite behaving strange
by jethro (Monsignor) on Apr 01, 2009 at 15:38 UTC | |
by bar10der (Beadle) on Apr 02, 2009 at 07:39 UTC | |
by Anonymous Monk on Jul 22, 2015 at 06:03 UTC | |
by Anonymous Monk on Jul 22, 2015 at 06:07 UTC | |
by Anonymous Monk on Jul 22, 2015 at 06:58 UTC |