Help for this page

Select Code to Download


  1. or download this
    $dbh->{LongReadLen} = 256 * 1024;
    ($body) = $dbh->selectrow_array("select content from $dtab where name 
    += '$name'");
     $body =~ s/\r/\n/g;
    
  2. or download this
     open (OF, ">body.txt");
      print OF $body;
     close (OF);
    
  3. or download this
     $msg = MIME::Lite->new(
                    From => $from,
    ...
    
      MIME::Lite->send('smtp', 'smtpsvr.net, Timeout=>240);
      $msg->send();
    
  4. or download this
    s/\cM/\n/
    s/\r\n/\n/