in reply to Another MIME::Lite/Net::SMTP Question
HTH#!/usr/bin/perl -w use MIME::Lite; use Net::SMTP; $msg = MIME::Lite->new( From =>'root@mycompany.com', To =>'me@home.com', Subject =>'Summary Report', Type =>'multipart/mixed' ); $msg->attach( Type => 'TEXT', Data => 'Test Message' ); $msg->attach( Type =>'TEXT', Path =>$path ); $msg->send('smtp','localhost'); exit 0;
|
|---|