Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
The above code I obtained via google search :-)use MIME::Lite; package Net::SMTP::TLS; use MIME::Base64; use Authen::SASL; use Net::SSL; my $from_address = ''; my $to_address = ''; my $mail_host = ''; my $subject = ''; my $message_body = ""; my $my_file_zip = ''; my $your_file_zip = ''; my $msg = MIME::Lite->new ( From => $from_address, To => $to_address, Subject => $subject, Type =>'multipart/mixed' ) or die "Error creating multipart container: $!\n"; ### Add the text message part $msg->attach ( Type => 'TEXT', Data => $message_body ) or die "Error adding the text message part: $!\n"; $msg->attach ( Type => 'application/vnd.ms-excel', Path => $my_file_zip, Filename => $your_file_zip, Disposition => 'attachment' ) or die "Error adding : $!\n"; ### Send the Message MIME::Lite->send('smtp',$mail_host,HELLO=>$mail_host,PORT=>'25', AuthUser=>'', AuthPass=>'', Timeout=>60,Debug=>1); $msg->send;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Using MIME::Lite with TLS
by Anonymous Monk on Jul 06, 2009 at 10:55 UTC | |
by Anonymous Monk on Jul 06, 2009 at 11:36 UTC | |
by Anonymous Monk on Jul 07, 2009 at 07:49 UTC | |
|
Re: Using MIME::Lite with TLS
by Corion (Patriarch) on Oct 27, 2019 at 18:10 UTC |