Help for this page

Select Code to Download


  1. or download this
    $msg = MIME::Lite->new(
                     From     =>'me@myhost.com',
    ...
        $msg =~ s/To: (.*)/To: $recipient/;
        $msg->send;
    }
    
  2. or download this
        
    my $cc = join ', ', @recipients;
    $msg = MIME::Lite->new(
    ...
             );
    
    $msg->send;